Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FI-2086: fix errors on webpack shutdown (#389)
* Changed from system call to exec call in main * Replaced npm start command with direct webpack invocation Because npm is not a process manager, it does not propagate SIGINTs to the scripts it starts (webpack in this case) - thus, doing Ctrl+C on the Foreman process will kill the npm process but not the webpack process. Replacing the "npm run start" command with whatever is listed under "start" in package.json bypasses this signal handling discrepancy. * Removed commented out code
- Loading branch information