@travetto/compiler 7.1.2 → 7.1.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/watch.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/compiler",
3
- "version": "7.1.2",
3
+ "version": "7.1.3",
4
4
  "type": "module",
5
5
  "description": "The compiler infrastructure for the Travetto framework",
6
6
  "keywords": [
@@ -31,11 +31,11 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@parcel/watcher": "^2.5.4",
34
- "@travetto/manifest": "^7.1.2",
35
- "@travetto/transformer": "^7.1.2"
34
+ "@travetto/manifest": "^7.1.3",
35
+ "@travetto/transformer": "^7.1.3"
36
36
  },
37
37
  "peerDependencies": {
38
- "@travetto/cli": "^7.1.3"
38
+ "@travetto/cli": "^7.1.4"
39
39
  },
40
40
  "peerDependenciesMeta": {
41
41
  "@travetto/cli": {
package/src/watch.ts CHANGED
@@ -118,7 +118,7 @@ export class CompilerWatcher {
118
118
  const ignore = await this.#getWatchIgnores();
119
119
  const packageFiles = new Set([
120
120
  'package.json',
121
- ...PACKAGE_MANAGERS.flatMap(x => [...x.otherFiles, x.lock])
121
+ ...PACKAGE_MANAGERS.flatMap(x => [x.workspaceFile!, x.lock].filter(Boolean))
122
122
  ].map(file => path.resolve(this.#root, file)));
123
123
 
124
124
  log.debug('Ignore Globs', ignore);