sprint-es 0.0.101 → 0.0.102
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/cjs/cli.cjs +1 -1
- package/dist/esm/cli.js +1 -1
- package/package.json +1 -1
package/dist/cjs/cli.cjs
CHANGED
|
@@ -162,7 +162,7 @@ function getProjectRoot() {
|
|
|
162
162
|
}
|
|
163
163
|
const projectRoot = getProjectRoot();
|
|
164
164
|
function runCommand(cmd, envVars) {
|
|
165
|
-
const child = child_process.spawn(cmd,
|
|
165
|
+
const child = child_process.spawn(cmd, [], {
|
|
166
166
|
cwd: projectRoot,
|
|
167
167
|
stdio: "inherit",
|
|
168
168
|
shell: true,
|
package/dist/esm/cli.js
CHANGED
|
@@ -143,7 +143,7 @@ function getProjectRoot() {
|
|
|
143
143
|
}
|
|
144
144
|
const projectRoot = getProjectRoot();
|
|
145
145
|
function runCommand(cmd, envVars) {
|
|
146
|
-
const child = spawn(cmd,
|
|
146
|
+
const child = spawn(cmd, [], {
|
|
147
147
|
cwd: projectRoot,
|
|
148
148
|
stdio: "inherit",
|
|
149
149
|
shell: true,
|