Open
Description
I'm using concurrently to run react-native start whilst I build my release app and install it on my phone. Using the -k option causes the react-native start to exit when the build finishes, as desired, but it exits with an error code which isn't very visually nice. Is there a way to cause the react-native start process to exit as cleanly as if you had hit ctrl-c?
Many thanks, and great module!
Activity
gustavohenke commentedon Jul 17, 2020
Not possible yet.
-k
is hardcoded to sendSIGTERM
, but I suppose it could be customised to sendSIGINT
instead, so-k SIGINT
-> sendsSIGINT
-k
-> sendsSIGTERM
Yuri6037 commentedon Aug 28, 2020
In other words: this software should not be used as all automation scripts will miserably fail currently, nice!
gustavohenke commentedon Sep 7, 2020
Hey @Yuri6037, if you don't like this behaviour you're welcome to propose a pull request to change it 😊
Yuri6037 commentedon Sep 7, 2020
Well I used modded a simpler tool: https://github.com/Yuri6037/parallelshell/blob/master/index.js