Skip to content

Commit f351a84

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

File tree

12 files changed

+69
-12
lines changed

12 files changed

+69
-12
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.43](https://github.com/pharindoko/json-serverless/compare/v1.5.42...v1.5.43) (2020-06-20)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** add ts-node to dev dependencies ([5f9f32d](https://github.com/pharindoko/json-serverless/commit/5f9f32db71e97da1915866dcc7df50582bce38a8))
12+
13+
14+
### Features
15+
16+
* **server:** expose api base path in app.config ([9d0de45](https://github.com/pharindoko/json-serverless/commit/9d0de45e8def5528663e1ba4d02d701be3c3cf37))
17+
18+
19+
20+
21+
622
## [1.5.42](https://github.com/pharindoko/json-serverless/compare/v1.5.41...v1.5.42) (2020-06-09)
723

824

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.42"
7+
"version": "1.5.43"
88
}

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.43](https://github.com/pharindoko/json-serverless/compare/v1.5.42...v1.5.43) (2020-06-20)
7+
8+
9+
### Features
10+
11+
* **server:** expose api base path in app.config ([9d0de45](https://github.com/pharindoko/json-serverless/commit/9d0de45e8def5528663e1ba4d02d701be3c3cf37))
12+
13+
14+
15+
16+
617
## [1.5.42](https://github.com/pharindoko/json-serverless/compare/v1.5.41...v1.5.42) (2020-06-09)
718

819

packages/cli/README.md

Lines changed: 5 additions & 2 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.42 linux-x64 node-v10.21.0
22+
json-serverless/1.5.43 linux-x64 node-v10.21.0
2323
$ jsonsls --help [COMMAND]
2424
USAGE
2525
$ jsonsls COMMAND
@@ -56,6 +56,7 @@ OPTIONS
5656
-r, --readonly set api to readonly (true) or writeable (false)
5757
-s, --[no-]swagger enable or disable swagger interface support
5858
-y, --autoapprove skip interactive approval before deployment
59+
--apiRoute=apiRoute [default: /api] path to use for api route
5960
```
6061

6162
## `jsonsls help [COMMAND]`
@@ -73,7 +74,7 @@ OPTIONS
7374
--all see all commands in CLI
7475
```
7576

76-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.0.1/src/commands/help.ts)_
77+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.1.0/src/commands/help.ts)_
7778

7879
## `jsonsls run FILE`
7980

@@ -92,6 +93,7 @@ OPTIONS
9293
-l, --loglevel=info|debug [default: info] loglevel of outputs
9394
-r, --readonly set api to readonly (true) or writeable (false)
9495
-s, --[no-]swagger enable or disable swagger interface support
96+
--apiRoute=apiRoute [default: /api] path to use for api route
9597
```
9698

9799
## `jsonsls update-stack`
@@ -109,6 +111,7 @@ OPTIONS
109111
-p, --currentdirectory=currentdirectory current working directory that will be used for execution
110112
-r, --readonly set api to readonly (true) or writeable (false)
111113
-s, --[no-]swagger enable or disable swagger interface support
114+
--apiRoute=apiRoute [default: /api] path to use for api route
112115
```
113116

114117
## `jsonsls validate FILE`

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.42",
4+
"version": "1.5.43",
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.42",
27-
"json-serverless-template": "^1.5.42",
26+
"json-serverless-lib": "^1.5.43",
27+
"json-serverless-template": "^1.5.43",
2828
"listr": "^0.14.3",
2929
"node-env-webpack-plugin": "1.1.0",
3030
"nodemon": "2.0.4",

packages/server/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.43](https://github.com/pharindoko/json-serverless/compare/v1.5.42...v1.5.43) (2020-06-20)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** add ts-node to dev dependencies ([5f9f32d](https://github.com/pharindoko/json-serverless/commit/5f9f32db71e97da1915866dcc7df50582bce38a8))
12+
13+
14+
### Features
15+
16+
* **server:** expose api base path in app.config ([9d0de45](https://github.com/pharindoko/json-serverless/commit/9d0de45e8def5528663e1ba4d02d701be3c3cf37))
17+
18+
19+
20+
21+
622
## [1.5.42](https://github.com/pharindoko/json-serverless/compare/v1.5.41...v1.5.42) (2020-06-09)
723

824

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.42",
3+
"version": "1.5.43",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.43](https://github.com/pharindoko/json-serverless/compare/v1.5.42...v1.5.43) (2020-06-20)
7+
8+
9+
### Features
10+
11+
* **server:** expose api base path in app.config ([9d0de45](https://github.com/pharindoko/json-serverless/commit/9d0de45e8def5528663e1ba4d02d701be3c3cf37))
12+
13+
14+
15+
16+
617
## [1.5.42](https://github.com/pharindoko/json-serverless/compare/v1.5.41...v1.5.42) (2020-06-09)
718

819
**Note:** Version bump only for package json-serverless-template

0 commit comments

Comments
 (0)