@tsed/cli 5.0.2 → 5.1.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/lib/cjs/commands/init/config/FeaturesPrompt.js +8 -33
- package/lib/cjs/commands/init/config/FeaturesPrompt.js.map +1 -1
- package/lib/cjs/runtimes/supports/BabelRuntime.js +1 -0
- package/lib/cjs/runtimes/supports/BabelRuntime.js.map +1 -1
- package/lib/cjs/runtimes/supports/WebpackRuntime.js +1 -9
- package/lib/cjs/runtimes/supports/WebpackRuntime.js.map +1 -1
- package/lib/esm/commands/init/config/FeaturesPrompt.js +8 -33
- package/lib/esm/commands/init/config/FeaturesPrompt.js.map +1 -1
- package/lib/esm/runtimes/supports/BabelRuntime.js +1 -0
- package/lib/esm/runtimes/supports/BabelRuntime.js.map +1 -1
- package/lib/esm/runtimes/supports/WebpackRuntime.js +1 -9
- package/lib/esm/runtimes/supports/WebpackRuntime.js.map +1 -1
- package/lib/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/commands/init/config/FeaturesPrompt.d.ts +1 -0
- package/lib/types/runtimes/supports/BabelRuntime.d.ts +1 -0
- package/lib/types/runtimes/supports/WebpackRuntime.d.ts +4 -3
- package/package.json +6 -6
- package/templates/init/src/config/envs/index.ts.hbs +1 -0
|
@@ -13,6 +13,7 @@ export declare class BabelRuntime extends NodeRuntime {
|
|
|
13
13
|
"@babel/plugin-proposal-decorators": string;
|
|
14
14
|
"@babel/preset-env": string;
|
|
15
15
|
"@babel/preset-typescript": string;
|
|
16
|
+
"@babel/plugin-proposal-object-rest-spread": string;
|
|
16
17
|
"babel-plugin-transform-typescript-metadata": string;
|
|
17
18
|
"babel-watch": string;
|
|
18
19
|
};
|
|
@@ -6,6 +6,9 @@ export declare class WebpackRuntime extends BabelRuntime {
|
|
|
6
6
|
compile(src: string, out: string): string;
|
|
7
7
|
startProd(main: string): string;
|
|
8
8
|
devDependencies(): {
|
|
9
|
+
"babel-loader": string;
|
|
10
|
+
webpack: string;
|
|
11
|
+
"webpack-cli": string;
|
|
9
12
|
"@babel/cli": string;
|
|
10
13
|
"@babel/core": string;
|
|
11
14
|
"@babel/node": string;
|
|
@@ -13,10 +16,8 @@ export declare class WebpackRuntime extends BabelRuntime {
|
|
|
13
16
|
"@babel/plugin-proposal-decorators": string;
|
|
14
17
|
"@babel/preset-env": string;
|
|
15
18
|
"@babel/preset-typescript": string;
|
|
19
|
+
"@babel/plugin-proposal-object-rest-spread": string;
|
|
16
20
|
"babel-plugin-transform-typescript-metadata": string;
|
|
17
21
|
"babel-watch": string;
|
|
18
|
-
"babel-loader": string;
|
|
19
|
-
webpack: string;
|
|
20
|
-
"webpack-cli": string;
|
|
21
22
|
};
|
|
22
23
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/cli",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"source": "./src/index.ts",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"node": ">=14"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@tsed/cli-core": "5.0
|
|
66
|
+
"@tsed/cli-core": "5.1.0",
|
|
67
67
|
"@tsed/core": ">=7.14.2",
|
|
68
68
|
"@tsed/di": ">=7.14.2",
|
|
69
69
|
"@tsed/logger": ">=6.2.1",
|
|
@@ -80,16 +80,16 @@
|
|
|
80
80
|
"tslib": "2.3.1"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@tsed/eslint": "5.0
|
|
84
|
-
"@tsed/jest-config": "5.0
|
|
85
|
-
"@tsed/typescript": "5.0
|
|
83
|
+
"@tsed/eslint": "5.1.0",
|
|
84
|
+
"@tsed/jest-config": "5.1.0",
|
|
85
|
+
"@tsed/typescript": "5.1.0",
|
|
86
86
|
"@types/change-case": "^2.3.1",
|
|
87
87
|
"cross-env": "7.0.3",
|
|
88
88
|
"eslint": "8.22.0",
|
|
89
89
|
"jest": "29.5.0"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
|
-
"@tsed/cli-core": "
|
|
92
|
+
"@tsed/cli-core": "5.1.0",
|
|
93
93
|
"@tsed/core": ">=7.14.2",
|
|
94
94
|
"@tsed/di": ">=7.14.2",
|
|
95
95
|
"@tsed/logger": ">=6.2.1",
|