redom / redom-cli

Generate RE:DOM projects easily!

Home Page:https://redom.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm command in watch.js run() function throws error in Windows.

whindes opened this issue · comments

In review of this wonderful framework library (big thanks!), I discovered a potential issue running in Windows 7.

assets/watch.js

function run (cmd, forever) {
//const child = cp.spawn('npm', ['run', cmd]);
//Workaround
const child = cp.spawn('npm.cmd', ['run', cmd]);

child.stdout.pipe(process.stdout);
child.stderr.pipe(process.stderr);

if (forever) {
child.on('exit', () => {
setTimeout(run, 5000, cmd, true);
});
}

return child;
}

Sorry, for some reason I've missed this issue. Fixing now..

Thanks for letting know about this and hope you like RE:DOM! 😎👍