@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 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: ["inherit", "pipe", "pipe"],
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: ["inherit", "pipe", "pipe"],
93
+ stdio: ["ignore", "pipe", "pipe"],
94
94
  env: process.env,
95
95
  shell: false
96
96
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/sdk",
3
- "version": "0.21.15",
3
+ "version": "0.21.17",
4
4
  "description": "SDK for building Locus-compatible community packages",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",