@nestjs/schematics 11.0.8 → 11.0.10
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/lib/application/files/js/package.json +11 -11
- package/dist/lib/application/files/js/test/app.e2e-__specFileSuffix__.js +4 -0
- package/dist/lib/application/files/ts/eslint.config.mjs +2 -1
- package/dist/lib/application/files/ts/package.json +3 -3
- package/dist/lib/application/files/ts/test/app.e2e-__specFileSuffix__.ts +4 -0
- package/package.json +18 -18
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@nestjs/testing": "^11.0.1",
|
|
25
|
-
"@babel/core": "7.
|
|
26
|
-
"@babel/node": "7.
|
|
27
|
-
"@babel/plugin-proposal-decorators": "7.
|
|
28
|
-
"@babel/plugin-transform-runtime": "7.
|
|
29
|
-
"@babel/preset-env": "7.
|
|
30
|
-
"@babel/register": "7.28.
|
|
31
|
-
"@babel/runtime": "7.
|
|
32
|
-
"jest": "30.
|
|
33
|
-
"nodemon": "3.1.
|
|
34
|
-
"prettier": "3.
|
|
35
|
-
"supertest": "7.
|
|
25
|
+
"@babel/core": "7.29.0",
|
|
26
|
+
"@babel/node": "7.29.0",
|
|
27
|
+
"@babel/plugin-proposal-decorators": "7.29.0",
|
|
28
|
+
"@babel/plugin-transform-runtime": "7.29.0",
|
|
29
|
+
"@babel/preset-env": "7.29.2",
|
|
30
|
+
"@babel/register": "7.28.6",
|
|
31
|
+
"@babel/runtime": "7.29.2",
|
|
32
|
+
"jest": "30.3.0",
|
|
33
|
+
"nodemon": "3.1.14",
|
|
34
|
+
"prettier": "3.8.1",
|
|
35
|
+
"supertest": "7.2.2"
|
|
36
36
|
},
|
|
37
37
|
"jest": {
|
|
38
38
|
"moduleFileExtensions": [
|
|
@@ -28,7 +28,8 @@ export default tseslint.config(
|
|
|
28
28
|
rules: {
|
|
29
29
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
30
30
|
'@typescript-eslint/no-floating-promises': 'warn',
|
|
31
|
-
'@typescript-eslint/no-unsafe-argument': 'warn'
|
|
31
|
+
'@typescript-eslint/no-unsafe-argument': 'warn',
|
|
32
|
+
"prettier/prettier": ["error", { endOfLine: "auto" }],
|
|
32
33
|
},
|
|
33
34
|
},
|
|
34
35
|
);
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@nestjs/testing": "^11.0.1",
|
|
35
35
|
"@types/express": "^5.0.0",
|
|
36
36
|
"@types/jest": "^30.0.0",
|
|
37
|
-
"@types/node": "^
|
|
38
|
-
"@types/supertest": "^
|
|
37
|
+
"@types/node": "^24.0.0",
|
|
38
|
+
"@types/supertest": "^7.0.0",
|
|
39
39
|
"eslint": "^9.18.0",
|
|
40
40
|
"eslint-config-prettier": "^10.0.1",
|
|
41
41
|
"eslint-plugin-prettier": "^5.2.2",
|
|
42
|
-
"globals": "^
|
|
42
|
+
"globals": "^17.0.0",
|
|
43
43
|
"jest": "^30.0.0",
|
|
44
44
|
"prettier": "^3.4.2",
|
|
45
45
|
"source-map-support": "^0.5.21",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjs/schematics",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.10",
|
|
4
4
|
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -41,35 +41,35 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/nestjs/schematics#readme",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@angular-devkit/core": "19.2.
|
|
45
|
-
"@angular-devkit/schematics": "19.2.
|
|
46
|
-
"comment-json": "4.
|
|
44
|
+
"@angular-devkit/core": "19.2.23",
|
|
45
|
+
"@angular-devkit/schematics": "19.2.23",
|
|
46
|
+
"comment-json": "4.6.2",
|
|
47
47
|
"jsonc-parser": "3.3.1",
|
|
48
48
|
"pluralize": "8.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@commitlint/cli": "20.
|
|
52
|
-
"@commitlint/config-angular": "20.
|
|
53
|
-
"@eslint/eslintrc": "3.3.
|
|
54
|
-
"@eslint/js": "9.
|
|
51
|
+
"@commitlint/cli": "20.5.0",
|
|
52
|
+
"@commitlint/config-angular": "20.5.0",
|
|
53
|
+
"@eslint/eslintrc": "3.3.5",
|
|
54
|
+
"@eslint/js": "9.39.4",
|
|
55
55
|
"@types/jest": "30.0.0",
|
|
56
|
-
"@types/node": "
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
58
|
-
"@typescript-eslint/parser": "8.
|
|
56
|
+
"@types/node": "24.12.0",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
58
|
+
"@typescript-eslint/parser": "8.58.0",
|
|
59
59
|
"cpx2": "8.0.0",
|
|
60
|
-
"eslint": "9.
|
|
60
|
+
"eslint": "9.39.4",
|
|
61
61
|
"eslint-config-prettier": "10.1.8",
|
|
62
62
|
"eslint-plugin-import": "2.32.0",
|
|
63
63
|
"eslint-plugin-prettier": "^5.2.1",
|
|
64
|
-
"globals": "
|
|
64
|
+
"globals": "17.4.0",
|
|
65
65
|
"gulp": "5.0.1",
|
|
66
66
|
"gulp-clean": "0.4.0",
|
|
67
67
|
"husky": "9.1.7",
|
|
68
|
-
"jest": "30.
|
|
69
|
-
"nyc": "
|
|
70
|
-
"prettier": "3.
|
|
71
|
-
"release-it": "19.
|
|
72
|
-
"ts-jest": "29.4.
|
|
68
|
+
"jest": "30.3.0",
|
|
69
|
+
"nyc": "18.0.0",
|
|
70
|
+
"prettier": "3.8.1",
|
|
71
|
+
"release-it": "19.2.4",
|
|
72
|
+
"ts-jest": "29.4.6",
|
|
73
73
|
"ts-node": "10.9.2",
|
|
74
74
|
"typescript": "5.9.3",
|
|
75
75
|
"typescript-eslint": "^8.15.0"
|