Skip to content

Commit c0c9701

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

File tree

12 files changed

+423
-1713
lines changed

12 files changed

+423
-1713
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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.6.1](https://github.com/pharindoko/json-serverless/compare/v1.6.0...v1.6.1) (2020-09-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency node-fetch to v2.6.1 [security] ([b1ca1b0](https://github.com/pharindoko/json-serverless/commit/b1ca1b075fa5210c0abba179fc7c1d899db5d1c8))
12+
* **deps:** update dependency table to v6 ([968b3ab](https://github.com/pharindoko/json-serverless/commit/968b3ab500e1ba58251417832710b25b8b83a2be))
13+
* **deps:** update dependency terser-webpack-plugin to v4.2.0 ([62b6195](https://github.com/pharindoko/json-serverless/commit/62b61955752bc6726474c48984d49e6d4663aaad))
14+
* update package dependencies ([7770493](https://github.com/pharindoko/json-serverless/commit/7770493a9cbf846cda2c58dce0da7f71aa4bc1aa))
15+
* **template:** add property to fix non-working serverless offline for local testing ([5324852](https://github.com/pharindoko/json-serverless/commit/5324852bb96cab39138532ec6237bb7005c08e3a))
16+
17+
18+
19+
20+
621
# [1.6.0](https://github.com/pharindoko/json-serverless/compare/v1.5.52...v1.6.0) (2020-08-14)
722

823

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.6.0"
7+
"version": "1.6.1"
88
}

packages/cli/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.6.1](https://github.com/pharindoko/json-serverless/compare/v1.6.0...v1.6.1) (2020-09-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency terser-webpack-plugin to v4.2.0 ([62b6195](https://github.com/pharindoko/json-serverless/commit/62b61955752bc6726474c48984d49e6d4663aaad))
12+
* update package dependencies ([7770493](https://github.com/pharindoko/json-serverless/commit/7770493a9cbf846cda2c58dce0da7f71aa4bc1aa))
13+
14+
15+
16+
17+
618
# [1.6.0](https://github.com/pharindoko/json-serverless/compare/v1.5.52...v1.6.0) (2020-08-14)
719

820

packages/cli/README.md

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,35 @@ cli for json-serverless project
88
[![License](https://img.shields.io/npm/l/json-serverless.svg)](https://github.com/pharindoko/json-serverless/blob/master/package.json)
99

1010
<!-- toc -->
11-
12-
- [Usage](#usage)
13-
- [Commands](#commands)
11+
* [json-serverless](#json-serverless)
12+
* [Usage](#usage)
13+
* [Commands](#commands)
1414
<!-- tocstop -->
1515

1616
# Usage
1717

1818
<!-- usage -->
19-
2019
```sh-session
2120
$ npm install -g json-serverless
2221
$ jsonsls COMMAND
2322
running command...
2423
$ jsonsls (-v|--version|version)
25-
json-serverless/1.6.0 darwin-x64 node-v14.2.0
24+
json-serverless/1.6.1 linux-x64 node-v10.22.1
2625
$ jsonsls --help [COMMAND]
2726
USAGE
2827
$ jsonsls COMMAND
2928
...
3029
```
31-
3230
<!-- usagestop -->
3331

3432
# Commands
3533

3634
<!-- commands -->
37-
38-
- [`jsonsls create-stack FILE [STAGE]`](#jsonsls-create-stack-file-stage)
39-
- [`jsonsls help [COMMAND]`](#jsonsls-help-command)
40-
- [`jsonsls run FILE`](#jsonsls-run-file)
41-
- [`jsonsls update-stack [STAGE]`](#jsonsls-update-stack-stage)
42-
- [`jsonsls validate FILE`](#jsonsls-validate-file)
35+
* [`jsonsls create-stack FILE [STAGE]`](#jsonsls-create-stack-file-stage)
36+
* [`jsonsls help [COMMAND]`](#jsonsls-help-command)
37+
* [`jsonsls run FILE`](#jsonsls-run-file)
38+
* [`jsonsls update-stack [STAGE]`](#jsonsls-update-stack-stage)
39+
* [`jsonsls validate FILE`](#jsonsls-validate-file)
4340

4441
## `jsonsls create-stack FILE [STAGE]`
4542

@@ -70,8 +67,6 @@ OPTIONS
7067
--swaggeruiRoute=swaggeruiRoute [default: /ui] path for the swagger ui interface
7168
```
7269

73-
_See code: [lib/commands/create-stack.js](https://github.com/pharindoko/json-serverless/blob/v1.6.0/lib/commands/create-stack.js)_
74-
7570
## `jsonsls help [COMMAND]`
7671

7772
display help for jsonsls
@@ -87,11 +82,11 @@ OPTIONS
8782
--all see all commands in CLI
8883
```
8984

90-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.1.0/src/commands/help.ts)_
85+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.0/src/commands/help.ts)_
9186

9287
## `jsonsls run FILE`
9388

94-
run and develop with the api locally
89+
run and test the api locally
9590

9691
```
9792
USAGE
@@ -113,8 +108,6 @@ OPTIONS
113108
--swaggeruiRoute=swaggeruiRoute [default: /ui] path for the swagger ui interface
114109
```
115110

116-
_See code: [lib/commands/run.js](https://github.com/pharindoko/json-serverless/blob/v1.6.0/lib/commands/run.js)_
117-
118111
## `jsonsls update-stack [STAGE]`
119112

120113
update the stackfolder and update the stack in the cloud
@@ -140,11 +133,9 @@ OPTIONS
140133
--swaggeruiRoute=swaggeruiRoute [default: /ui] path for the swagger ui interface
141134
```
142135

143-
_See code: [lib/commands/update-stack.js](https://github.com/pharindoko/json-serverless/blob/v1.6.0/lib/commands/update-stack.js)_
144-
145136
## `jsonsls validate FILE`
146137

147-
validate the json file to see if it works with json-serverless
138+
describe the command here
148139

149140
```
150141
USAGE
@@ -157,7 +148,4 @@ OPTIONS
157148
-h, --help show CLI help
158149
-s, --[no-]swagger enable or disable swagger interface support
159150
```
160-
161-
_See code: [lib/commands/validate.js](https://github.com/pharindoko/json-serverless/blob/v1.6.0/lib/commands/validate.js)_
162-
163151
<!-- commandsstop -->

0 commit comments

Comments
 (0)