@nestjs/cli 11.0.16 → 11.0.17
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/compiler/watch-compiler.js +1 -3
- package/lib/ui/errors.js +0 -1
- package/lib/ui/messages.js +0 -1
- package/package.json +14 -14
|
@@ -39,9 +39,7 @@ class WatchCompiler extends base_compiler_1.BaseCompiler {
|
|
|
39
39
|
}
|
|
40
40
|
overrideCreateProgramFn(host, manualRestart, projectReferences, plugins) {
|
|
41
41
|
const origCreateProgram = host.createProgram;
|
|
42
|
-
host.createProgram = (rootNames, options,
|
|
43
|
-
// tslint:disable-next-line:no-shadowed-variable
|
|
44
|
-
host, oldProgram) => {
|
|
42
|
+
host.createProgram = (rootNames, options, host, oldProgram) => {
|
|
45
43
|
if (manualRestart) {
|
|
46
44
|
(0, manual_restart_1.displayManualRestartTip)();
|
|
47
45
|
}
|
package/lib/ui/errors.js
CHANGED
package/lib/ui/messages.js
CHANGED
|
@@ -23,7 +23,6 @@ exports.MESSAGES = {
|
|
|
23
23
|
CHANGE_DIR_COMMAND: (name) => `$ cd ${name}`,
|
|
24
24
|
START_COMMAND: (name) => `$ ${name} run start`,
|
|
25
25
|
PACKAGE_MANAGER_INSTALLATION_FAILED: (commandToRunManually) => `${emojis_1.EMOJIS.SCREAM} Packages installation failed!\nIn case you don't see any errors above, consider manually running the failed command ${commandToRunManually} to see more details on why it errored out.`,
|
|
26
|
-
// tslint:disable-next-line:max-line-length
|
|
27
26
|
NEST_INFORMATION_PACKAGE_MANAGER_FAILED: `${emojis_1.EMOJIS.SMIRK} cannot read your project package.json file, are you inside your project directory?`,
|
|
28
27
|
NEST_INFORMATION_PACKAGE_WARNING_FAILED: (nestDependencies) => `${emojis_1.EMOJIS.SMIRK} failed to compare dependencies versions, please check that following packages are in the same minor version : \n ${nestDependencies.join('\n')}`,
|
|
29
28
|
LIBRARY_INSTALLATION_FAILED_BAD_PACKAGE: (name) => `Unable to install library ${name} because package did not install. Please check package name.`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjs/cli",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.17",
|
|
4
4
|
"description": "Nest - modern, fast, powerful node.js web framework (@cli)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/nestjs/nest-cli#readme",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@angular-devkit/core": "19.2.
|
|
42
|
-
"@angular-devkit/schematics": "19.2.
|
|
43
|
-
"@angular-devkit/schematics-cli": "19.2.
|
|
41
|
+
"@angular-devkit/core": "19.2.22",
|
|
42
|
+
"@angular-devkit/schematics": "19.2.22",
|
|
43
|
+
"@angular-devkit/schematics-cli": "19.2.22",
|
|
44
44
|
"@inquirer/prompts": "7.10.1",
|
|
45
45
|
"@nestjs/schematics": "^11.0.1",
|
|
46
46
|
"ansis": "4.2.0",
|
|
@@ -48,27 +48,27 @@
|
|
|
48
48
|
"cli-table3": "0.6.5",
|
|
49
49
|
"commander": "4.1.1",
|
|
50
50
|
"fork-ts-checker-webpack-plugin": "9.1.0",
|
|
51
|
-
"glob": "13.0.
|
|
51
|
+
"glob": "13.0.6",
|
|
52
52
|
"node-emoji": "1.11.0",
|
|
53
53
|
"ora": "5.4.1",
|
|
54
54
|
"tsconfig-paths": "4.2.0",
|
|
55
55
|
"tsconfig-paths-webpack-plugin": "4.2.0",
|
|
56
56
|
"typescript": "5.9.3",
|
|
57
|
-
"webpack": "5.
|
|
57
|
+
"webpack": "5.105.4",
|
|
58
58
|
"webpack-node-externals": "3.0.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@commitlint/cli": "20.
|
|
62
|
-
"@commitlint/config-angular": "20.
|
|
61
|
+
"@commitlint/cli": "20.4.1",
|
|
62
|
+
"@commitlint/config-angular": "20.4.1",
|
|
63
63
|
"@swc/cli": "0.7.10",
|
|
64
|
-
"@swc/core": "1.15.
|
|
64
|
+
"@swc/core": "1.15.11",
|
|
65
65
|
"@types/inquirer": "9.0.9",
|
|
66
66
|
"@types/jest": "29.5.14",
|
|
67
|
-
"@types/node": "24.10.
|
|
67
|
+
"@types/node": "24.10.13",
|
|
68
68
|
"@types/node-emoji": "1.8.2",
|
|
69
69
|
"@types/webpack-node-externals": "3.0.4",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
71
|
-
"@typescript-eslint/parser": "8.
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "8.55.0",
|
|
71
|
+
"@typescript-eslint/parser": "8.55.0",
|
|
72
72
|
"delete-empty": "3.0.0",
|
|
73
73
|
"eslint": "9.39.2",
|
|
74
74
|
"eslint-config-prettier": "10.1.8",
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
"husky": "9.1.7",
|
|
78
78
|
"jest": "29.7.0",
|
|
79
79
|
"lint-staged": "16.2.7",
|
|
80
|
-
"prettier": "3.8.
|
|
81
|
-
"release-it": "19.2.
|
|
80
|
+
"prettier": "3.8.1",
|
|
81
|
+
"release-it": "19.2.4",
|
|
82
82
|
"ts-jest": "29.4.6",
|
|
83
83
|
"ts-loader": "9.5.4",
|
|
84
84
|
"ts-node": "10.9.2"
|