@nestjs/cli 11.0.0-next.7 → 11.0.1

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.
@@ -68,7 +68,10 @@ class AssetsManager {
68
68
  if (isWatchEnabled || item.watchAssets) {
69
69
  // prettier-ignore
70
70
  const watcher = chokidar
71
- .watch(item.glob, { ignored: item.exclude })
71
+ .watch((0, glob_1.sync)(item.glob, {
72
+ ignore: item.exclude,
73
+ dot: true,
74
+ }))
72
75
  .on('add', (path) => this.actionOnFile({ ...option, path, action: 'change' }))
73
76
  .on('change', (path) => this.actionOnFile({ ...option, path, action: 'change' }))
74
77
  .on('unlink', (path) => this.actionOnFile({ ...option, path, action: 'unlink' }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/cli",
3
- "version": "11.0.0-next.7",
3
+ "version": "11.0.1",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@cli)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -68,8 +68,8 @@
68
68
  "@types/node": "22.10.7",
69
69
  "@types/node-emoji": "1.8.2",
70
70
  "@types/webpack-node-externals": "3.0.4",
71
- "@typescript-eslint/eslint-plugin": "8.20.0",
72
- "@typescript-eslint/parser": "8.20.0",
71
+ "@typescript-eslint/eslint-plugin": "8.21.0",
72
+ "@typescript-eslint/parser": "8.21.0",
73
73
  "delete-empty": "3.0.0",
74
74
  "eslint": "9.18.0",
75
75
  "eslint-config-prettier": "10.0.1",