@tsed/cli-generate-swagger 7.0.0-beta.1 → 7.0.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -69,7 +69,8 @@ export class GenerateSwaggerCmd {
|
|
|
69
69
|
await Promise.all([this.fs.writeJson(fileJson, spec), this.cliYaml.write(fileYaml, spec)]);
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
|
-
command(
|
|
72
|
+
command({
|
|
73
|
+
token: GenerateSwaggerCmd,
|
|
73
74
|
name: "generate-swagger",
|
|
74
75
|
description: "Generate the client API from swagger spec",
|
|
75
76
|
options: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/cli-generate-swagger",
|
|
3
3
|
"description": "Ts.ED CLI plugin. Export a command that generate the swagger.json from your Ts.ED controllers and OS3 spec.",
|
|
4
|
-
"version": "7.0.0-beta.
|
|
4
|
+
"version": "7.0.0-beta.11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"source": "./src/index.ts",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"tslib": "2.7.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@tsed/cli": "7.0.0-beta.
|
|
30
|
-
"@tsed/cli-core": "7.0.0-beta.
|
|
31
|
-
"@tsed/typescript": "7.0.0-beta.
|
|
29
|
+
"@tsed/cli": "7.0.0-beta.11",
|
|
30
|
+
"@tsed/cli-core": "7.0.0-beta.11",
|
|
31
|
+
"@tsed/typescript": "7.0.0-beta.11",
|
|
32
32
|
"cross-env": "7.0.3",
|
|
33
33
|
"typescript": "5.6.2",
|
|
34
34
|
"vitest": "3.2.4"
|