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 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, args.slice(1), {
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, args.slice(1), {
146
+ const child = spawn(cmd, [], {
147
147
  cwd: projectRoot,
148
148
  stdio: "inherit",
149
149
  shell: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprint-es",
3
- "version": "0.0.101",
3
+ "version": "0.0.102",
4
4
  "description": "Sprint - Quickly API",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",