@depup/nestjs__cli 11.0.16-depup.1 → 11.0.17-depup.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/README.md CHANGED
@@ -13,27 +13,25 @@ npm install @depup/nestjs__cli
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [@nestjs/cli](https://www.npmjs.com/package/@nestjs/cli) @ 11.0.16 |
17
- | Processed | 2026-03-23 |
16
+ | Original | [@nestjs/cli](https://www.npmjs.com/package/@nestjs/cli) @ 11.0.17 |
17
+ | Processed | 2026-03-31 |
18
18
  | Smoke test | failed |
19
- | Deps updated | 12 |
19
+ | Deps updated | 10 |
20
20
 
21
21
  ## Dependency Changes
22
22
 
23
23
  | Dependency | From | To |
24
24
  |------------|------|-----|
25
- | @angular-devkit/core | 19.2.19 | ^21.2.3 |
26
- | @angular-devkit/schematics | 19.2.19 | ^21.2.3 |
27
- | @angular-devkit/schematics-cli | 19.2.19 | ^21.2.3 |
25
+ | @angular-devkit/core | 19.2.22 | ^21.2.5 |
26
+ | @angular-devkit/schematics | 19.2.22 | ^21.2.5 |
27
+ | @angular-devkit/schematics-cli | 19.2.22 | ^21.2.5 |
28
28
  | @inquirer/prompts | 7.10.1 | ^8.3.2 |
29
- | @nestjs/schematics | ^11.0.1 | ^11.0.9 |
29
+ | @nestjs/schematics | ^11.0.1 | ^11.0.10 |
30
30
  | chokidar | 4.0.3 | ^5.0.0 |
31
31
  | commander | 4.1.1 | ^14.0.3 |
32
- | glob | 13.0.0 | ^13.0.6 |
33
32
  | node-emoji | 1.11.0 | ^2.2.0 |
34
33
  | ora | 5.4.1 | ^9.3.0 |
35
34
  | typescript | 5.9.3 | ^6.0.2 |
36
- | webpack | 5.104.1 | ^5.105.4 |
37
35
 
38
36
  ---
39
37
 
package/changes.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "bumped": {
3
3
  "@angular-devkit/core": {
4
- "from": "19.2.19",
5
- "to": "^21.2.3"
4
+ "from": "19.2.22",
5
+ "to": "^21.2.5"
6
6
  },
7
7
  "@angular-devkit/schematics": {
8
- "from": "19.2.19",
9
- "to": "^21.2.3"
8
+ "from": "19.2.22",
9
+ "to": "^21.2.5"
10
10
  },
11
11
  "@angular-devkit/schematics-cli": {
12
- "from": "19.2.19",
13
- "to": "^21.2.3"
12
+ "from": "19.2.22",
13
+ "to": "^21.2.5"
14
14
  },
15
15
  "@inquirer/prompts": {
16
16
  "from": "7.10.1",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "@nestjs/schematics": {
20
20
  "from": "^11.0.1",
21
- "to": "^11.0.9"
21
+ "to": "^11.0.10"
22
22
  },
23
23
  "chokidar": {
24
24
  "from": "4.0.3",
@@ -28,10 +28,6 @@
28
28
  "from": "4.1.1",
29
29
  "to": "^14.0.3"
30
30
  },
31
- "glob": {
32
- "from": "13.0.0",
33
- "to": "^13.0.6"
34
- },
35
31
  "node-emoji": {
36
32
  "from": "1.11.0",
37
33
  "to": "^2.2.0"
@@ -43,12 +39,8 @@
43
39
  "typescript": {
44
40
  "from": "5.9.3",
45
41
  "to": "^6.0.2"
46
- },
47
- "webpack": {
48
- "from": "5.104.1",
49
- "to": "^5.105.4"
50
42
  }
51
43
  },
52
- "timestamp": "2026-03-23T16:27:57.880Z",
53
- "totalUpdated": 12
44
+ "timestamp": "2026-03-31T08:29:22.532Z",
45
+ "totalUpdated": 10
54
46
  }
@@ -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
@@ -1,5 +1,4 @@
1
1
  "use strict";
2
- // tslint:disable:max-line-length
3
2
  Object.defineProperty(exports, "__esModule", { value: true });
4
3
  exports.CLI_ERRORS = void 0;
5
4
  exports.CLI_ERRORS = {
@@ -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": "@depup/nestjs__cli",
3
- "version": "11.0.16-depup.1",
3
+ "version": "11.0.17-depup.0",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli) (with updated dependencies)",
5
5
  "engines": {
6
6
  "node": ">= 20.11"
@@ -33,37 +33,37 @@
33
33
  },
34
34
  "homepage": "https://github.com/nestjs/nest-cli#readme",
35
35
  "dependencies": {
36
- "@angular-devkit/core": "^21.2.3",
37
- "@angular-devkit/schematics": "^21.2.3",
38
- "@angular-devkit/schematics-cli": "^21.2.3",
36
+ "@angular-devkit/core": "^21.2.5",
37
+ "@angular-devkit/schematics": "^21.2.5",
38
+ "@angular-devkit/schematics-cli": "^21.2.5",
39
39
  "@inquirer/prompts": "^8.3.2",
40
- "@nestjs/schematics": "^11.0.9",
40
+ "@nestjs/schematics": "^11.0.10",
41
41
  "ansis": "4.2.0",
42
42
  "chokidar": "^5.0.0",
43
43
  "cli-table3": "0.6.5",
44
44
  "commander": "^14.0.3",
45
45
  "fork-ts-checker-webpack-plugin": "9.1.0",
46
- "glob": "^13.0.6",
46
+ "glob": "13.0.6",
47
47
  "node-emoji": "^2.2.0",
48
48
  "ora": "^9.3.0",
49
49
  "tsconfig-paths": "4.2.0",
50
50
  "tsconfig-paths-webpack-plugin": "4.2.0",
51
51
  "typescript": "^6.0.2",
52
- "webpack": "^5.105.4",
52
+ "webpack": "5.105.4",
53
53
  "webpack-node-externals": "3.0.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@commitlint/cli": "20.3.1",
57
- "@commitlint/config-angular": "20.3.1",
56
+ "@commitlint/cli": "20.4.1",
57
+ "@commitlint/config-angular": "20.4.1",
58
58
  "@swc/cli": "0.7.10",
59
- "@swc/core": "1.15.8",
59
+ "@swc/core": "1.15.11",
60
60
  "@types/inquirer": "9.0.9",
61
61
  "@types/jest": "29.5.14",
62
- "@types/node": "24.10.8",
62
+ "@types/node": "24.10.13",
63
63
  "@types/node-emoji": "1.8.2",
64
64
  "@types/webpack-node-externals": "3.0.4",
65
- "@typescript-eslint/eslint-plugin": "8.53.0",
66
- "@typescript-eslint/parser": "8.53.0",
65
+ "@typescript-eslint/eslint-plugin": "8.55.0",
66
+ "@typescript-eslint/parser": "8.55.0",
67
67
  "delete-empty": "3.0.0",
68
68
  "eslint": "9.39.2",
69
69
  "eslint-config-prettier": "10.1.8",
@@ -72,8 +72,8 @@
72
72
  "husky": "9.1.7",
73
73
  "jest": "29.7.0",
74
74
  "lint-staged": "16.2.7",
75
- "prettier": "3.8.0",
76
- "release-it": "19.2.3",
75
+ "prettier": "3.8.1",
76
+ "release-it": "19.2.4",
77
77
  "ts-jest": "29.4.6",
78
78
  "ts-loader": "9.5.4",
79
79
  "ts-node": "10.9.2"
@@ -104,16 +104,16 @@
104
104
  "depup": {
105
105
  "changes": {
106
106
  "@angular-devkit/core": {
107
- "from": "19.2.19",
108
- "to": "^21.2.3"
107
+ "from": "19.2.22",
108
+ "to": "^21.2.5"
109
109
  },
110
110
  "@angular-devkit/schematics": {
111
- "from": "19.2.19",
112
- "to": "^21.2.3"
111
+ "from": "19.2.22",
112
+ "to": "^21.2.5"
113
113
  },
114
114
  "@angular-devkit/schematics-cli": {
115
- "from": "19.2.19",
116
- "to": "^21.2.3"
115
+ "from": "19.2.22",
116
+ "to": "^21.2.5"
117
117
  },
118
118
  "@inquirer/prompts": {
119
119
  "from": "7.10.1",
@@ -121,7 +121,7 @@
121
121
  },
122
122
  "@nestjs/schematics": {
123
123
  "from": "^11.0.1",
124
- "to": "^11.0.9"
124
+ "to": "^11.0.10"
125
125
  },
126
126
  "chokidar": {
127
127
  "from": "4.0.3",
@@ -131,10 +131,6 @@
131
131
  "from": "4.1.1",
132
132
  "to": "^14.0.3"
133
133
  },
134
- "glob": {
135
- "from": "13.0.0",
136
- "to": "^13.0.6"
137
- },
138
134
  "node-emoji": {
139
135
  "from": "1.11.0",
140
136
  "to": "^2.2.0"
@@ -146,16 +142,12 @@
146
142
  "typescript": {
147
143
  "from": "5.9.3",
148
144
  "to": "^6.0.2"
149
- },
150
- "webpack": {
151
- "from": "5.104.1",
152
- "to": "^5.105.4"
153
145
  }
154
146
  },
155
- "depsUpdated": 12,
147
+ "depsUpdated": 10,
156
148
  "originalPackage": "@nestjs/cli",
157
- "originalVersion": "11.0.16",
158
- "processedAt": "2026-03-23T16:28:27.721Z",
149
+ "originalVersion": "11.0.17",
150
+ "processedAt": "2026-03-31T08:29:49.994Z",
159
151
  "smokeTest": "failed"
160
152
  }
161
153
  }