@ekkos/cli 1.2.11 → 1.2.12
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/dist/commands/run.js +4 -1
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -1084,7 +1084,10 @@ async function run(options) {
|
|
|
1084
1084
|
}
|
|
1085
1085
|
}
|
|
1086
1086
|
// Check PTY availability early (deterministic, no async race)
|
|
1087
|
-
|
|
1087
|
+
// Windows: SKIP node-pty entirely. ConPTY corrupts Ink's cursor management sequences
|
|
1088
|
+
// (hide/show/move), causing ghost ▊ block cursor artifacts. Use stdio:'inherit' spawn
|
|
1089
|
+
// instead so Ink gets direct terminal access. Hooks still handle session tracking.
|
|
1090
|
+
const loadedPty = isWindows ? null : await loadPty();
|
|
1088
1091
|
const usePty = loadedPty !== null;
|
|
1089
1092
|
// ══════════════════════════════════════════════════════════════════════════
|
|
1090
1093
|
// CONCURRENT STARTUP: Spawn Claude while animation runs
|