koguma 2.3.2 → 2.3.3
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/cli/wrangler.ts +4 -2
- package/package.json +1 -1
- package/src/admin/_bundle.ts +1 -1
- package/src/vite.js +3 -3
- package/src/vite.ts +12 -3
package/cli/wrangler.ts
CHANGED
|
@@ -377,8 +377,10 @@ export function wranglerDev(
|
|
|
377
377
|
}
|
|
378
378
|
if (!isTTY) return;
|
|
379
379
|
if (finalMsg) {
|
|
380
|
-
|
|
381
|
-
|
|
380
|
+
// Keep as transient — stays visible but will be overwritten
|
|
381
|
+
// by the next spinner or cleared by sync/error events
|
|
382
|
+
process.stdout.write(`\r\x1b[K ✓ ${finalMsg}`);
|
|
383
|
+
hasStatusLine = true;
|
|
382
384
|
}
|
|
383
385
|
};
|
|
384
386
|
|