Keith Cirkel

Results 509 comments of Keith Cirkel

Hey @etianen thanks for the issue. It sounds like a bug. PRs welcome to fix it :wink:

SIGINT is used when a terminal sends Ctrl+C. We close apps down because that's what you'd expect from sending Ctrl+C. I guess we should probably send all signals to the...

Cool, I guess we tried `exec` and that didnt work so well, so lets do `detached` and see how that goes.

Sounds like a good idea. I'll try it out on a couple of projects and let you know how it goes.

FYI for everyone coming here, to install this development version - run: ``` bash npm install git+ssh://github.com/keithamus/parallelshell.git#dev ``` If people report this as working we can merge it and cut...

@paulpflug I've just had some time to try this out on a project, and noticed I'm getting errors due to the `stdio` option. It's quite odd, but I'll show you...

@barrysteyn could you try checking out #30 and seeing if that works without your changes. #30 is the direction we want to be going in.

I don't think it's necessary to set the cwd provided we're spawning shells. I'll agree that the current implementation is broken, but if we merge #30 then you can just...

Hey @burabure thanks for the issue. You could always run it this way instead: ``` bash NODE_ENV=development parallelshell \"nodemon index.js\" \"node webpack-server.js\" \"npm run watch\" ``` @paulpflug I think we...