@alook/cli 0.0.70 → 0.0.71
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/index.js +6 -3
- package/dist/session-runner.js +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17470,7 +17470,8 @@ class ClaudeBackend {
|
|
|
17470
17470
|
cwd: options.cwd,
|
|
17471
17471
|
stdio: ["pipe", "pipe", "pipe"],
|
|
17472
17472
|
env: { ...process.env, ...options.env },
|
|
17473
|
-
shell: process.platform === "win32"
|
|
17473
|
+
shell: process.platform === "win32",
|
|
17474
|
+
windowsHide: true
|
|
17474
17475
|
});
|
|
17475
17476
|
if (!proc.pid) {
|
|
17476
17477
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'claude' installed and on PATH?`;
|
|
@@ -17738,7 +17739,8 @@ class CodexBackend {
|
|
|
17738
17739
|
cwd: options.cwd,
|
|
17739
17740
|
stdio: ["pipe", "pipe", "pipe"],
|
|
17740
17741
|
env: { ...process.env, ...options.env },
|
|
17741
|
-
shell: process.platform === "win32"
|
|
17742
|
+
shell: process.platform === "win32",
|
|
17743
|
+
windowsHide: true
|
|
17742
17744
|
});
|
|
17743
17745
|
if (!proc.pid) {
|
|
17744
17746
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'codex' installed and on PATH?`;
|
|
@@ -18227,7 +18229,8 @@ class OpenCodeBackend {
|
|
|
18227
18229
|
cwd: options.cwd,
|
|
18228
18230
|
stdio: ["ignore", "pipe", "pipe"],
|
|
18229
18231
|
env: { ...process.env, ...options.env, OPENCODE_PERMISSION: '{"*":"allow"}' },
|
|
18230
|
-
shell: process.platform === "win32"
|
|
18232
|
+
shell: process.platform === "win32",
|
|
18233
|
+
windowsHide: true
|
|
18231
18234
|
});
|
|
18232
18235
|
if (!proc.pid) {
|
|
18233
18236
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'opencode' installed and on PATH?`;
|
package/dist/session-runner.js
CHANGED
|
@@ -16854,7 +16854,8 @@ class ClaudeBackend {
|
|
|
16854
16854
|
cwd: options.cwd,
|
|
16855
16855
|
stdio: ["pipe", "pipe", "pipe"],
|
|
16856
16856
|
env: { ...process.env, ...options.env },
|
|
16857
|
-
shell: process.platform === "win32"
|
|
16857
|
+
shell: process.platform === "win32",
|
|
16858
|
+
windowsHide: true
|
|
16858
16859
|
});
|
|
16859
16860
|
if (!proc.pid) {
|
|
16860
16861
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'claude' installed and on PATH?`;
|
|
@@ -17122,7 +17123,8 @@ class CodexBackend {
|
|
|
17122
17123
|
cwd: options.cwd,
|
|
17123
17124
|
stdio: ["pipe", "pipe", "pipe"],
|
|
17124
17125
|
env: { ...process.env, ...options.env },
|
|
17125
|
-
shell: process.platform === "win32"
|
|
17126
|
+
shell: process.platform === "win32",
|
|
17127
|
+
windowsHide: true
|
|
17126
17128
|
});
|
|
17127
17129
|
if (!proc.pid) {
|
|
17128
17130
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'codex' installed and on PATH?`;
|
|
@@ -17611,7 +17613,8 @@ class OpenCodeBackend {
|
|
|
17611
17613
|
cwd: options.cwd,
|
|
17612
17614
|
stdio: ["ignore", "pipe", "pipe"],
|
|
17613
17615
|
env: { ...process.env, ...options.env, OPENCODE_PERMISSION: '{"*":"allow"}' },
|
|
17614
|
-
shell: process.platform === "win32"
|
|
17616
|
+
shell: process.platform === "win32",
|
|
17617
|
+
windowsHide: true
|
|
17615
17618
|
});
|
|
17616
17619
|
if (!proc.pid) {
|
|
17617
17620
|
const error51 = `Failed to start ${this.cliPath}: binary not found or not executable. Is 'opencode' installed and on PATH?`;
|