Skip to content

Commit d889130

Browse files
author
Travis CI User
committed
chore(release): Travis CI update [ci skip]
1 parent eac2793 commit d889130

File tree

12 files changed

+65
-14
lines changed

12 files changed

+65
-14
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.34](https://github.com/pharindoko/json-serverless/compare/v1.5.33...v1.5.34) (2020-05-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** update-stack: adapth path and file references ([67a14a9](https://github.com/pharindoko/json-serverless/commit/67a14a9e0d41721fdee7a47cbcea3cba9e7fa30c))
12+
* **cli:** update-stack: add missing build-step ([1e6ecd2](https://github.com/pharindoko/json-serverless/commit/1e6ecd24d0307fd4b6fefc92890756e78247526f))
13+
14+
15+
### Features
16+
17+
* **cli:** add option to update-stack to use another current working directory ([fcbbba5](https://github.com/pharindoko/json-serverless/commit/fcbbba58b9522735919c31fd5d51c617d9146b76))
18+
19+
20+
21+
22+
623
## [1.5.33](https://github.com/pharindoko/json-serverless/compare/v1.5.32...v1.5.33) (2020-05-04)
724

825

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"packages/server",
55
"packages/template"
66
],
7-
"version": "1.5.33"
7+
"version": "1.5.34"
88
}

packages/cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.34](https://github.com/pharindoko/json-serverless/compare/v1.5.33...v1.5.34) (2020-05-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** update-stack: adapth path and file references ([67a14a9](https://github.com/pharindoko/json-serverless/commit/67a14a9e0d41721fdee7a47cbcea3cba9e7fa30c))
12+
* **cli:** update-stack: add missing build-step ([1e6ecd2](https://github.com/pharindoko/json-serverless/commit/1e6ecd24d0307fd4b6fefc92890756e78247526f))
13+
14+
15+
### Features
16+
17+
* **cli:** add option to update-stack to use another current working directory ([fcbbba5](https://github.com/pharindoko/json-serverless/commit/fcbbba58b9522735919c31fd5d51c617d9146b76))
18+
19+
20+
21+
22+
623
## [1.5.33](https://github.com/pharindoko/json-serverless/compare/v1.5.32...v1.5.33) (2020-05-04)
724

825
**Note:** Version bump only for package json-serverless

packages/cli/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g json-serverless
1919
$ jsonsls COMMAND
2020
running command...
2121
$ jsonsls (-v|--version|version)
22-
json-serverless/1.5.33 linux-x64 node-v10.20.1
22+
json-serverless/1.5.34 linux-x64 node-v10.20.1
2323
$ jsonsls --help [COMMAND]
2424
USAGE
2525
$ jsonsls COMMAND
@@ -94,8 +94,9 @@ USAGE
9494
$ jsonsls update-stack
9595
9696
OPTIONS
97-
-a, --apikeyauth require api key authentication to access api
98-
-h, --help show CLI help
99-
-r, --readonly set api to readonly (true) or writeable (false)
97+
-a, --apikeyauth require api key authentication to access api
98+
-h, --help show CLI help
99+
-p, --currentdirectory=currentdirectory current working directory that will be used for execution
100+
-r, --readonly set api to readonly (true) or writeable (false)
100101
```
101102
<!-- commandsstop -->

packages/cli/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json-serverless",
33
"description": "cli for json-serverless project",
4-
"version": "1.5.33",
4+
"version": "1.5.34",
55
"author": "pharindoko",
66
"bin": {
77
"jsonsls": "./bin/run"
@@ -23,8 +23,8 @@
2323
"figlet": "^1.3.0",
2424
"globby": "^11.0.0",
2525
"inquirer": "^7.1.0",
26-
"json-serverless-lib": "^1.5.33",
27-
"json-serverless-template": "^1.5.33",
26+
"json-serverless-lib": "^1.5.34",
27+
"json-serverless-template": "^1.5.34",
2828
"listr": "^0.14.3",
2929
"node-env-webpack-plugin": "1.1.0",
3030
"nodemon": "2.0.3",

packages/server/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.34](https://github.com/pharindoko/json-serverless/compare/v1.5.33...v1.5.34) (2020-05-04)
7+
8+
**Note:** Version bump only for package json-serverless-lib
9+
10+
11+
12+
13+
614
## [1.5.33](https://github.com/pharindoko/json-serverless/compare/v1.5.32...v1.5.33) (2020-05-04)
715

816
**Note:** Version bump only for package json-serverless-lib

packages/server/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-serverless-lib",
3-
"version": "1.5.33",
3+
"version": "1.5.34",
44
"description": "Transform a json file into an api",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/template/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.34](https://github.com/pharindoko/json-serverless/compare/v1.5.33...v1.5.34) (2020-05-04)
7+
8+
**Note:** Version bump only for package json-serverless-template
9+
10+
11+
12+
13+
614
## [1.5.33](https://github.com/pharindoko/json-serverless/compare/v1.5.32...v1.5.33) (2020-05-04)
715

816

0 commit comments

Comments
 (0)