dual-brain 0.3.19 → 0.3.20
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/bin/dual-brain.mjs +2 -0
- package/package.json +1 -1
package/bin/dual-brain.mjs
CHANGED
|
@@ -2721,6 +2721,8 @@ async function mainScreen(rl, ask) {
|
|
|
2721
2721
|
|
|
2722
2722
|
// ── Continuation card (interrupted work) ─────────────────────────────────
|
|
2723
2723
|
if (interrupted) {
|
|
2724
|
+
if (_spinnerTimeout) clearTimeout(_spinnerTimeout);
|
|
2725
|
+
if (dashSpinner) { try { dashSpinner.stop(); } catch {} dashSpinner = null; }
|
|
2724
2726
|
const DIM = '\x1b[2m', RST = '\x1b[0m', YLW = '\x1b[33m';
|
|
2725
2727
|
process.stdout.write(`\n ${YLW}Continue:${RST} ${interrupted.sessionName}\n`);
|
|
2726
2728
|
if (interrupted.lastState) {
|
package/package.json
CHANGED