openrune 0.3.7 → 0.3.8
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/rune.js +3 -3
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/bin/rune.js
CHANGED
|
@@ -846,7 +846,7 @@ function runRune(file, restArgs) {
|
|
|
846
846
|
|
|
847
847
|
const child = spawn('claude', claudeArgs, {
|
|
848
848
|
cwd: folderPath,
|
|
849
|
-
stdio: ['
|
|
849
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
850
850
|
env: { ...process.env },
|
|
851
851
|
})
|
|
852
852
|
|
|
@@ -955,7 +955,7 @@ async function pipeRunes(args) {
|
|
|
955
955
|
const output = await new Promise((resolve, reject) => {
|
|
956
956
|
const child = spawn('claude', claudeArgs, {
|
|
957
957
|
cwd: folderPath,
|
|
958
|
-
stdio: ['
|
|
958
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
959
959
|
env: { ...process.env },
|
|
960
960
|
})
|
|
961
961
|
|
|
@@ -1066,7 +1066,7 @@ function watchRune(file, restArgs) {
|
|
|
1066
1066
|
|
|
1067
1067
|
const child = spawn('claude', claudeArgs, {
|
|
1068
1068
|
cwd: folderPath,
|
|
1069
|
-
stdio: ['
|
|
1069
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
1070
1070
|
env: { ...process.env },
|
|
1071
1071
|
})
|
|
1072
1072
|
|
package/lib/index.js
CHANGED
|
@@ -53,7 +53,7 @@ function load(filePath) {
|
|
|
53
53
|
const result = await new Promise((resolve, reject) => {
|
|
54
54
|
const child = spawn('claude', claudeArgs, {
|
|
55
55
|
cwd: folderPath,
|
|
56
|
-
stdio: ['
|
|
56
|
+
stdio: ['ignore', 'pipe', 'pipe'],
|
|
57
57
|
env: { ...process.env },
|
|
58
58
|
})
|
|
59
59
|
|
package/package.json
CHANGED