diff --git a/scripts/dev.mjs b/scripts/dev.mjs index da194d8..0557d2e 100644 --- a/scripts/dev.mjs +++ b/scripts/dev.mjs @@ -132,6 +132,7 @@ function spawnCommand({ name, command, args, env = process.env }) { const child = spawn(command, args, { cwd: root, env, + shell: process.platform === 'win32', stdio: ["inherit", "pipe", "pipe"], detached: process.platform !== "win32" });