@travetto/compiler 8.0.0-alpha.17 → 8.0.0-alpha.19

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": "8.0.0-alpha.17",
3
+ "version": "8.0.0-alpha.19",
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.6",
34
- "@travetto/manifest": "^8.0.0-alpha.8",
35
- "@travetto/transformer": "^8.0.0-alpha.11"
34
+ "@travetto/manifest": "^8.0.0-alpha.9",
35
+ "@travetto/transformer": "^8.0.0-alpha.12"
36
36
  },
37
37
  "peerDependencies": {
38
- "@travetto/cli": "^8.0.0-alpha.22"
38
+ "@travetto/cli": "^8.0.0-alpha.25"
39
39
  },
40
40
  "peerDependenciesMeta": {
41
41
  "@travetto/cli": {
@@ -77,7 +77,7 @@ export class CompilerManager {
77
77
  log.info('Server already running, waiting for initial compile to complete');
78
78
  const controller = new AbortController();
79
79
  Log.consumeProgressEvents(() => client.fetchEvents('progress', { until: event => !!event.complete, signal: controller.signal }));
80
- await client.waitForState(['compile-end'], 'Successfully built');
80
+ await client.waitForState(['compile-end', 'watch-start'], 'Successfully built');
81
81
  controller.abort();
82
82
  }
83
83
  }