@locusai/sdk 0.21.15 → 0.21.17
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -139,7 +139,7 @@ function invokeLocus(args, cwd) {
|
|
|
139
139
|
function invokeLocusStream(args, cwd) {
|
|
140
140
|
return import_node_child_process.spawn("locus", args, {
|
|
141
141
|
cwd: cwd ?? process.cwd(),
|
|
142
|
-
stdio: ["
|
|
142
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
143
143
|
env: process.env,
|
|
144
144
|
shell: false
|
|
145
145
|
});
|
package/dist/index.js
CHANGED
|
@@ -90,7 +90,7 @@ function invokeLocus(args, cwd) {
|
|
|
90
90
|
function invokeLocusStream(args, cwd) {
|
|
91
91
|
return spawn("locus", args, {
|
|
92
92
|
cwd: cwd ?? process.cwd(),
|
|
93
|
-
stdio: ["
|
|
93
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
94
94
|
env: process.env,
|
|
95
95
|
shell: false
|
|
96
96
|
});
|