wispy-cli 2.7.28 → 2.7.30
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/wispy-tui.mjs +1 -1
- package/bin/wispy.mjs +1 -1
- package/lib/wispy-tui-ink.mjs +1643 -0
- package/lib/wispy-tui-v3.mjs +1242 -0
- package/package.json +2 -1
package/bin/wispy-tui.mjs
CHANGED
|
@@ -9,6 +9,6 @@ import { fileURLToPath } from "node:url";
|
|
|
9
9
|
import path from "node:path";
|
|
10
10
|
|
|
11
11
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
12
|
-
const tuiScript = path.join(__dirname, "..", "lib", "wispy-tui.mjs");
|
|
12
|
+
const tuiScript = path.join(__dirname, "..", "lib", "wispy-tui-v3.mjs");
|
|
13
13
|
|
|
14
14
|
await import(tuiScript);
|
package/bin/wispy.mjs
CHANGED
|
@@ -1543,7 +1543,7 @@ if (!command || command === "server" || command === "overview") {
|
|
|
1543
1543
|
// No args → TUI
|
|
1544
1544
|
if (!command) {
|
|
1545
1545
|
try {
|
|
1546
|
-
await import(join(rootDir, "lib/wispy-tui.mjs"));
|
|
1546
|
+
await import(join(rootDir, "lib/wispy-tui-v3.mjs"));
|
|
1547
1547
|
// TUI handles its own lifecycle via waitUntilExit() — do NOT process.exit() here
|
|
1548
1548
|
} catch (err) {
|
|
1549
1549
|
console.error("TUI failed to start:", err.message);
|