Skip to content

Commit 82c1917

Browse files
authored
chore(release): v0.19.2 (#129)
1 parent f003eb0 commit 82c1917

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ Each input has its own limitations, corner cases, and features; thus, each has s
4242
### Protocols
4343
Each protocol has its own limitations, corner cases, and features; thus, each has separate documentation.
4444
- [NATS](./protocols/nats.md)
45+

docs/usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $ npm install -g @the-codegen-project/cli
99
$ codegen COMMAND
1010
running command...
1111
$ codegen (--version)
12-
@the-codegen-project/cli/0.19.1 linux-x64 node-v18.20.4
12+
@the-codegen-project/cli/0.19.2 linux-x64 node-v18.20.4
1313
$ codegen --help [COMMAND]
1414
USAGE
1515
$ codegen COMMAND
@@ -81,7 +81,7 @@ DESCRIPTION
8181
Generate code based on your configuration, use `init` to get started.
8282
```
8383

84-
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.19.1/src/commands/generate.ts)_
84+
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.19.2/src/commands/generate.ts)_
8585

8686
## `codegen help [COMMAND]`
8787

@@ -137,7 +137,7 @@ DESCRIPTION
137137
Initialize The Codegen Project in your project
138138
```
139139

140-
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.19.1/src/commands/init.ts)_
140+
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.19.2/src/commands/init.ts)_
141141

142142
## `codegen version`
143143

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@the-codegen-project/cli",
33
"description": "CLI to work with code generation in any environment",
4-
"version": "0.19.1",
4+
"version": "0.19.2",
55
"bin": {
66
"codegen": "./bin/run.mjs"
77
},

src/codegen/generators/typescript/parameters.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ if (match) {
6565
return parameters;
6666
*
6767
*/
68-
export function unwrap(
69-
channelParameters: ConstrainedObjectModel
70-
) {
68+
export function unwrap(channelParameters: ConstrainedObjectModel) {
7169
// Nothing to unwrap if no parameters are used
7270
if (Object.keys(channelParameters.properties).length === 0) {
7371
return '';

0 commit comments

Comments
 (0)