slopcannon 0.1.8 → 0.1.10
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/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2088,6 +2088,9 @@ Install one of them before running slopcannon.`);
|
|
|
2088
2088
|
if (args.pathFile || args.launcherFile) {
|
|
2089
2089
|
process.exit(0);
|
|
2090
2090
|
}
|
|
2091
|
+
process.stdin.removeAllListeners();
|
|
2092
|
+
process.stdin.pause();
|
|
2093
|
+
process.stdin.unref();
|
|
2091
2094
|
const launchCommand = launcher === "codex" ? ["codex", "--yolo"] : ["claude", "--dangerously-skip-permissions"];
|
|
2092
2095
|
const proc = Bun.spawn(launchCommand, {
|
|
2093
2096
|
cwd: worktreePath,
|