@travetto/runtime 8.0.0-alpha.7 → 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.
- package/package.json +2 -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.
|
|
3
|
+
"version": "8.0.0-alpha.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Runtime for travetto applications.",
|
|
6
6
|
"keywords": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@travetto/manifest": "^8.0.0-alpha.4",
|
|
30
|
-
"@types/debug": "^4.1.
|
|
30
|
+
"@types/debug": "^4.1.13",
|
|
31
31
|
"debug": "^4.4.3",
|
|
32
32
|
"temporal-polyfill-lite": "^0.3.2"
|
|
33
33
|
},
|
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(['
|
|
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';
|