parallelshell
parallelshell copied to clipboard
Run multiple shell commands in parallel
Error: spawn cmd ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:246:19) at onErrorNT (internal/child_process.js:427:16) at processTicksAndRejections (internal/process/next_tick.js:76:17) at process.runNextTicks [as _tickCallback] (internal/process/next_tick.js:51:3) at Function.Module.runMain (internal/modules/cjs/loader.js:804:11) at internal/main/run_main_module.js:21:11 Emitted 'error' event at: at Process.ChildProcess._handle.onexit (internal/child_process.js:252:12)...
Hello, I am trying to test parallelshell (package.json at the bottom of this issue for ref) simply running echo commands, but I get the following: > [email protected] echo1echo2 C:\Users\Public\r\b\c **>...
[This line](https://github.com/darkguy2008/parallelshell/blob/master/index.js#L105) fails on Node 10.x since it's checking the version with string comparison and `10` is less than `8` in that case. This could be replaced with: ```js cwd:...
issue darkguy2008/parallelshell#55: child process with exit code 0 is a process that already finished.
I think this is because of the switch to exec. this used to work: `parallelshell \"NODE_ENV=development nodemon index.js\" \"node webpack-server.js\" \"npm run watch\"` now it throws ``` parallelshell "export NODE_ENV=development...
With single command the exit code is as expected: ``` $ parallelshell "ls asdf" ls: asdf: No such file or directory $ echo $? 1 ``` With multiple commands it...
made the command a little bit shorter
I'm not even sure how this is possible, but it's happening nonetheless. Running OS X latest with two terminal tabs: 1. normal entry mode on a directory 2. parallelshell with...
I've wanted to add notification to the end of some of my build paths and have run into issues where I'm using `parallelshell` for watching. That is, the same set...