Robert-W / esri-flux-react

Simple Boilerplate for using React and Esri's JavaScript API together. It supports IE 9+ and the last two versions of all major browsers and can run in https or http. For data management, it's using Alt.js (a flux library).
https://robert-w.github.io/esri-flux-react/
MIT License
22 stars 5 forks source link

Investigate `npm start` #4

Open Robert-W opened 8 years ago

Robert-W commented 8 years ago

Current start command uses & for parallelism, e.g. (npm run babel & gulp start & gulp serve). This does not work reliably on windows and since the & runs things in the background, this potentially causes issues when an error occurs, leaving a process running in the background. This has been spotted when someone's start task throws an error or quits and then they save a js file and babel is still running, which has to be killed with the kill command.

Robert-W commented 8 years ago

Look into https://github.com/mysticatea/npm-run-all, it seems to be replacing parallelshell as it's owner is now collaborating with npm-run-all.