@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.
@@ -34,6 +34,7 @@ export declare enum FeatureType {
34
34
  TYPEORM_EXPO = "typeorm:expo",
35
35
  TESTING = "testing",
36
36
  JEST = "jest",
37
+ VITEST = "vitest",
37
38
  MOCHA = "mocha",
38
39
  LINTER = "linter",
39
40
  ESLINT = "eslint",
@@ -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.2",
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.2",
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.2",
84
- "@tsed/jest-config": "5.0.2",
85
- "@tsed/typescript": "5.0.2",
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": ">=4.6.2",
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",
@@ -4,3 +4,4 @@ process.env.NODE_ENV = process.env.NODE_ENV || "development";
4
4
 
5
5
  export const config = dotenv.config();
6
6
  export const isProduction = process.env.NODE_ENV === "production";
7
+ export const envs = process.env