tthr 0.3.8 → 0.3.9
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.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1839,7 +1839,7 @@ function startFrameworkDev(command, port, spinner, extraArgs = []) {
|
|
|
1839
1839
|
const portArgs = ["--port", port];
|
|
1840
1840
|
const allArgs = [...args, ...portArgs, ...extraArgs];
|
|
1841
1841
|
spinner.text = `Starting ${command}${extraArgs.length ? ` with extra args: ${extraArgs.join(" ")}` : ""}...`;
|
|
1842
|
-
const child = spawn(cmd, allArgs, {
|
|
1842
|
+
const child = spawn("npx", [cmd, ...allArgs], {
|
|
1843
1843
|
cwd: process.cwd(),
|
|
1844
1844
|
stdio: ["inherit", "pipe", "pipe"],
|
|
1845
1845
|
shell: true,
|