@alook/cli 0.0.93 → 0.0.95
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 +0 -3
- package/dist/session-runner.js +0 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18292,9 +18292,6 @@ class OpenCodeBackend {
|
|
|
18292
18292
|
if (options.resumeSessionId) {
|
|
18293
18293
|
args.push("--session", options.resumeSessionId);
|
|
18294
18294
|
}
|
|
18295
|
-
if (options.cwd) {
|
|
18296
|
-
args.push("--dir", options.cwd);
|
|
18297
|
-
}
|
|
18298
18295
|
args.push(prompt);
|
|
18299
18296
|
const proc = spawn3(this.cliPath, args, {
|
|
18300
18297
|
cwd: options.cwd,
|
package/dist/session-runner.js
CHANGED
|
@@ -17673,9 +17673,6 @@ class OpenCodeBackend {
|
|
|
17673
17673
|
if (options.resumeSessionId) {
|
|
17674
17674
|
args.push("--session", options.resumeSessionId);
|
|
17675
17675
|
}
|
|
17676
|
-
if (options.cwd) {
|
|
17677
|
-
args.push("--dir", options.cwd);
|
|
17678
|
-
}
|
|
17679
17676
|
args.push(prompt);
|
|
17680
17677
|
const proc = spawn3(this.cliPath, args, {
|
|
17681
17678
|
cwd: options.cwd,
|