veryfront 0.1.12 → 0.1.13
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/dev/handler.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AASxD,eAAO,MAAM,YAAY;;;;;EAKvB,CAAC;AAwBH,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/dev/handler.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AASxD,eAAO,MAAM,YAAY;;;;;EAKvB,CAAC;AAwBH,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAmBtE"}
|
|
@@ -46,9 +46,10 @@ export async function handleDevCommand(args) {
|
|
|
46
46
|
}
|
|
47
47
|
// Clear stale ESM caches to prevent module resolution issues from previous runs
|
|
48
48
|
await clearAllLocalCaches();
|
|
49
|
-
await devCommand({
|
|
49
|
+
const { done } = await devCommand({
|
|
50
50
|
port: opts.port,
|
|
51
51
|
projectDir,
|
|
52
52
|
hmr: opts.hmr,
|
|
53
53
|
});
|
|
54
|
+
await done;
|
|
54
55
|
}
|
package/esm/deno.js
CHANGED
package/package.json
CHANGED
|
@@ -60,9 +60,11 @@ export async function handleDevCommand(args: ParsedArgs): Promise<void> {
|
|
|
60
60
|
// Clear stale ESM caches to prevent module resolution issues from previous runs
|
|
61
61
|
await clearAllLocalCaches();
|
|
62
62
|
|
|
63
|
-
await devCommand({
|
|
63
|
+
const { done } = await devCommand({
|
|
64
64
|
port: opts.port,
|
|
65
65
|
projectDir,
|
|
66
66
|
hmr: opts.hmr,
|
|
67
67
|
});
|
|
68
|
+
|
|
69
|
+
await done;
|
|
68
70
|
}
|