@sdk-it/cli 0.19.1 → 0.21.0
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.
- package/dist/index.js +54134 -18
- package/dist/index.js.map +4 -4
- package/dist/lib/langs/typescript.d.ts +2 -2
- package/dist/lib/langs/typescript.d.ts.map +1 -1
- package/dist/lib/options.d.ts +5 -0
- package/dist/lib/options.d.ts.map +1 -1
- package/package.json +8 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typescript.d.ts","sourceRoot":"","sources":["../../../src/lib/langs/typescript.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"typescript.d.ts","sourceRoot":"","sources":["../../../src/lib/langs/typescript.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAU,MAAM,WAAW,CAAC;AAsC5C,QAAA,MAAM,OAAO,SAoET,CAAC;AAiGL,eAAe,OAAO,CAAC"}
|
package/dist/lib/options.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { Option } from 'commander';
|
|
2
2
|
export declare const specOption: Option;
|
|
3
3
|
export declare const outputOption: Option;
|
|
4
|
+
/**
|
|
5
|
+
* Return the correct shell‐expansion syntax for an env var
|
|
6
|
+
* on the current platform (cmd.exe vs POSIX).
|
|
7
|
+
*/
|
|
8
|
+
export declare function shellEnv(name: string): string;
|
|
4
9
|
//# sourceMappingURL=options.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../src/lib/options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../src/lib/options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAMnC,eAAO,MAAM,UAAU,QAGtB,CAAC;AAEF,eAAO,MAAM,YAAY,QAGxB,CAAC;AAEF;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAI7C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdk-it/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -19,10 +19,14 @@
|
|
|
19
19
|
"!**/*.tsbuildinfo"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@sdk-it/typescript": "0.21.0",
|
|
23
|
+
"@sdk-it/dart": "0.21.0",
|
|
24
|
+
"@sdk-it/spec": "0.21.0",
|
|
22
25
|
"commander": "^13.1.0",
|
|
23
|
-
"@sdk-it/
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
+
"@sdk-it/core": "0.21.0",
|
|
27
|
+
"libnpmpublish": "^11.0.0",
|
|
28
|
+
"openapi3-ts": "4.4.0",
|
|
29
|
+
"registry-auth-token": "^5.1.0"
|
|
26
30
|
},
|
|
27
31
|
"publishConfig": {
|
|
28
32
|
"access": "public"
|