fix spawn on Windows (#80)
This commit is contained in:
parent
66cb32c6fc
commit
724510f4f9
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ export default {
|
|||
writeBundle() {
|
||||
if (!running_dev_server) {
|
||||
running_dev_server = true;
|
||||
child_process.spawn('npm', ['run', 'start:dev'], { stdio: ['ignore', 'inherit', 'inherit'] });
|
||||
child_process.spawn('npm', ['run', 'start:dev'], { stdio: ['ignore', 'inherit', 'inherit'], shell: true });
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue