@nestjs/cli 11.0.1 → 11.0.3

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.
@@ -176,8 +176,8 @@ class SwcCompiler extends base_compiler_1.BaseCompiler {
176
176
  const dir = (0, path_1.isAbsolute)(options.cliOptions.outDir)
177
177
  ? options.cliOptions.outDir
178
178
  : (0, path_1.join)(process.cwd(), options.cliOptions.outDir);
179
- const paths = (0, path_1.join)(dir, '**/*.js');
180
- const watcher = chokidar.watch(paths, {
179
+ const watcher = chokidar.watch(dir, {
180
+ ignored: (file, stats) => (stats?.isFile() && !file.endsWith('.js')),
181
181
  ignoreInitial: true,
182
182
  awaitWriteFinish: {
183
183
  stabilityThreshold: 50,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "11.0.1",
3
+ "version": "11.0.3",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "homepage": "https://github.com/nestjs/nest-cli#readme",
40
40
  "dependencies": {
41
- "@angular-devkit/core": "19.1.2",
42
- "@angular-devkit/schematics": "19.1.2",
43
- "@angular-devkit/schematics-cli": "19.1.2",
44
- "@inquirer/prompts": "7.2.3",
41
+ "@angular-devkit/core": "19.1.7",
42
+ "@angular-devkit/schematics": "19.1.7",
43
+ "@angular-devkit/schematics-cli": "19.1.7",
44
+ "@inquirer/prompts": "7.3.2",
45
45
  "@nestjs/schematics": "11.0.0",
46
- "ansis": "3.9.0",
46
+ "ansis": "3.15.0",
47
47
  "chokidar": "4.0.3",
48
48
  "cli-table3": "0.6.5",
49
49
  "commander": "4.1.1",
@@ -55,31 +55,31 @@
55
55
  "tsconfig-paths": "4.2.0",
56
56
  "tsconfig-paths-webpack-plugin": "4.2.0",
57
57
  "typescript": "5.7.3",
58
- "webpack": "5.97.1",
58
+ "webpack": "5.98.0",
59
59
  "webpack-node-externals": "3.0.0"
60
60
  },
61
61
  "devDependencies": {
62
- "@commitlint/cli": "19.6.1",
63
- "@commitlint/config-angular": "19.7.0",
62
+ "@commitlint/cli": "19.7.1",
63
+ "@commitlint/config-angular": "19.7.1",
64
64
  "@swc/cli": "0.6.0",
65
- "@swc/core": "1.10.8",
65
+ "@swc/core": "1.10.16",
66
66
  "@types/inquirer": "9.0.7",
67
67
  "@types/jest": "29.5.14",
68
- "@types/node": "22.10.7",
68
+ "@types/node": "22.13.4",
69
69
  "@types/node-emoji": "1.8.2",
70
70
  "@types/webpack-node-externals": "3.0.4",
71
- "@typescript-eslint/eslint-plugin": "8.21.0",
72
- "@typescript-eslint/parser": "8.21.0",
71
+ "@typescript-eslint/eslint-plugin": "8.24.0",
72
+ "@typescript-eslint/parser": "8.24.0",
73
73
  "delete-empty": "3.0.0",
74
- "eslint": "9.18.0",
74
+ "eslint": "9.20.1",
75
75
  "eslint-config-prettier": "10.0.1",
76
76
  "gulp": "5.0.0",
77
77
  "gulp-clean": "0.4.0",
78
78
  "husky": "9.1.7",
79
79
  "jest": "29.7.0",
80
- "lint-staged": "15.4.1",
81
- "prettier": "3.4.2",
82
- "release-it": "18.1.1",
80
+ "lint-staged": "15.4.3",
81
+ "prettier": "3.5.1",
82
+ "release-it": "18.1.2",
83
83
  "ts-jest": "29.2.5",
84
84
  "ts-loader": "9.5.2",
85
85
  "ts-node": "10.9.2"