koguma 2.3.1 → 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 CHANGED
@@ -377,8 +377,10 @@ export function wranglerDev(
377
377
  }
378
378
  if (!isTTY) return;
379
379
  if (finalMsg) {
380
- process.stdout.write(`\r\x1b[K ✓ ${finalMsg}\n`);
381
- hasStatusLine = false;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koguma",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "description": "🐻 A little CMS with big heart — schema-driven, runs on Cloudflare's free tier",
5
5
  "type": "module",
6
6
  "license": "MIT",