@travetto/runtime 8.0.0-alpha.8 → 8.0.0-alpha.9

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 +1 -1
  2. package/src/watch.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/runtime",
3
- "version": "8.0.0-alpha.8",
3
+ "version": "8.0.0-alpha.9",
4
4
  "type": "module",
5
5
  "description": "Runtime for travetto applications.",
6
6
  "keywords": [
package/src/watch.ts CHANGED
@@ -97,7 +97,7 @@ export class WatchUtil {
97
97
  }
98
98
 
99
99
  void this.runWithRetry(async ({ signal }) => {
100
- await client.waitForState(['compile-end', 'watch-start'], undefined, signal);
100
+ await client.waitForState(['watch-start'], undefined, signal);
101
101
 
102
102
  if (!await client.isWatching()) { // If we get here, without a watch
103
103
  return 'error';