@travetto/compiler 4.1.0 → 4.1.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/compiler",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "The compiler infrastructure for the Travetto framework",
5
5
  "keywords": [
6
6
  "compiler",
@@ -32,11 +32,11 @@
32
32
  "dependencies": {
33
33
  "@parcel/watcher": "^2.4.1",
34
34
  "@travetto/manifest": "^4.1.0",
35
- "@travetto/transformer": "^4.1.0",
36
- "@types/node": "^20.12.12"
35
+ "@travetto/transformer": "^4.1.2",
36
+ "@types/node": "^20.14.8"
37
37
  },
38
38
  "peerDependencies": {
39
- "@travetto/cli": "^4.1.0"
39
+ "@travetto/cli": "^4.1.2"
40
40
  },
41
41
  "peerDependenciesMeta": {
42
42
  "@travetto/cli": {
package/src/watch.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import os from 'node:os';
2
+
1
3
  import { ManifestModuleFileType, ManifestModuleFolderType, ManifestModuleUtil, ManifestUtil, PackageUtil, RuntimeIndex, path } from '@travetto/manifest';
2
4
 
3
5
  import type { CompileStateEntry } from './types';
@@ -42,7 +44,8 @@ export class CompilerWatcher {
42
44
  ignores = ['node_modules/**'];
43
45
  }
44
46
 
45
- return [
47
+ // Disable exclusions until parcel watcher fixes itself
48
+ return os.platform() === 'linux' ? [] : [
46
49
  ...ignores,
47
50
  '.git', '**/.git',
48
51
  `${this.#state.manifest.build.outputFolder}/node_modules/**`,
package/tsconfig.trv.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "module": "CommonJS",
3
+ "module": "NodeNext",
4
4
  "target": "esnext",
5
5
  "moduleResolution": "Bundler",
6
6
  "lib": [