@nestjs/cli 11.0.4 → 11.0.5

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.
@@ -177,7 +177,8 @@ class SwcCompiler extends base_compiler_1.BaseCompiler {
177
177
  ? options.cliOptions.outDir
178
178
  : (0, path_1.join)(process.cwd(), options.cliOptions.outDir);
179
179
  const watcher = chokidar.watch(dir, {
180
- ignored: (file, stats) => (stats?.isFile() && !file.endsWith('.js')),
180
+ ignored: (file, stats) => (stats?.isFile() &&
181
+ !(file.endsWith('.js') || file.endsWith('.mjs'))),
181
182
  ignoreInitial: true,
182
183
  awaitWriteFinish: {
183
184
  stabilityThreshold: 50,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "11.0.4",
3
+ "version": "11.0.5",
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.7",
42
- "@angular-devkit/schematics": "19.1.7",
43
- "@angular-devkit/schematics-cli": "19.1.7",
41
+ "@angular-devkit/core": "19.1.8",
42
+ "@angular-devkit/schematics": "19.1.8",
43
+ "@angular-devkit/schematics-cli": "19.1.8",
44
44
  "@inquirer/prompts": "7.3.2",
45
45
  "@nestjs/schematics": "^11.0.1",
46
- "ansis": "3.15.0",
46
+ "ansis": "3.16.0",
47
47
  "chokidar": "4.0.3",
48
48
  "cli-table3": "0.6.5",
49
49
  "commander": "4.1.1",
@@ -62,25 +62,25 @@
62
62
  "@commitlint/cli": "19.7.1",
63
63
  "@commitlint/config-angular": "19.7.1",
64
64
  "@swc/cli": "0.6.0",
65
- "@swc/core": "1.10.17",
65
+ "@swc/core": "1.11.1",
66
66
  "@types/inquirer": "9.0.7",
67
67
  "@types/jest": "29.5.14",
68
- "@types/node": "22.13.4",
68
+ "@types/node": "22.13.5",
69
69
  "@types/node-emoji": "1.8.2",
70
70
  "@types/webpack-node-externals": "3.0.4",
71
- "@typescript-eslint/eslint-plugin": "8.24.1",
72
- "@typescript-eslint/parser": "8.24.1",
71
+ "@typescript-eslint/eslint-plugin": "8.25.0",
72
+ "@typescript-eslint/parser": "8.25.0",
73
73
  "delete-empty": "3.0.0",
74
- "eslint": "9.20.1",
74
+ "eslint": "9.21.0",
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
80
  "lint-staged": "15.4.3",
81
- "prettier": "3.5.1",
81
+ "prettier": "3.5.2",
82
82
  "release-it": "18.1.2",
83
- "ts-jest": "29.2.5",
83
+ "ts-jest": "29.2.6",
84
84
  "ts-loader": "9.5.2",
85
85
  "ts-node": "10.9.2"
86
86
  },