@nestjs/cli 11.0.14 → 11.0.16

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.
@@ -15,11 +15,14 @@ function treeKillSync(pid, signal) {
15
15
  return;
16
16
  }
17
17
  function getAllPid() {
18
- const rows = (0, child_process_1.execSync)('ps -A -o pid,ppid')
19
- .toString()
20
- .trim()
21
- .split('\n')
22
- .slice(1);
18
+ const result = (0, child_process_1.spawnSync)('ps', ['-A', '-o', 'pid,ppid'], {
19
+ encoding: 'utf-8',
20
+ stdio: 'pipe',
21
+ });
22
+ if (result.error || !result.stdout) {
23
+ return [];
24
+ }
25
+ const rows = result.stdout.trim().split('\n').slice(1);
23
26
  return rows
24
27
  .map(function (row) {
25
28
  const parts = row.match(/\s*(\d+)\s*(\d+)/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "11.0.14",
3
+ "version": "11.0.16",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -54,32 +54,32 @@
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.103.0",
57
+ "webpack": "5.104.1",
58
58
  "webpack-node-externals": "3.0.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@commitlint/cli": "20.1.0",
62
- "@commitlint/config-angular": "20.0.0",
63
- "@swc/cli": "0.7.9",
64
- "@swc/core": "1.15.3",
61
+ "@commitlint/cli": "20.3.1",
62
+ "@commitlint/config-angular": "20.3.1",
63
+ "@swc/cli": "0.7.10",
64
+ "@swc/core": "1.15.8",
65
65
  "@types/inquirer": "9.0.9",
66
66
  "@types/jest": "29.5.14",
67
- "@types/node": "24.10.1",
67
+ "@types/node": "24.10.8",
68
68
  "@types/node-emoji": "1.8.2",
69
69
  "@types/webpack-node-externals": "3.0.4",
70
- "@typescript-eslint/eslint-plugin": "8.48.0",
71
- "@typescript-eslint/parser": "8.48.0",
70
+ "@typescript-eslint/eslint-plugin": "8.53.0",
71
+ "@typescript-eslint/parser": "8.53.0",
72
72
  "delete-empty": "3.0.0",
73
- "eslint": "9.39.1",
73
+ "eslint": "9.39.2",
74
74
  "eslint-config-prettier": "10.1.8",
75
75
  "gulp": "5.0.1",
76
76
  "gulp-clean": "0.4.0",
77
77
  "husky": "9.1.7",
78
78
  "jest": "29.7.0",
79
79
  "lint-staged": "16.2.7",
80
- "prettier": "3.7.1",
81
- "release-it": "19.0.6",
82
- "ts-jest": "29.4.5",
80
+ "prettier": "3.8.0",
81
+ "release-it": "19.2.3",
82
+ "ts-jest": "29.4.6",
83
83
  "ts-loader": "9.5.4",
84
84
  "ts-node": "10.9.2"
85
85
  },