You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@anderjak was having problems running npm run start on Windows. We suspect this is due to the && in the run script, because if you manually run these commands in sequence, it works as expected.
"start": "npm install && npm run bootstrap && npm run build"
Investigate packages that allow sequenced scripts that work cross-platform.
The text was updated successfully, but these errors were encountered:
I'm starting to experiment with npm-run-all for another project. You can configure scripts to be run in series or parallel. This would be easy to integrate.
csbasham commented on Jun 15, 2018
@anderjak was having problems running
npm run start
on Windows. We suspect this is due to the&&
in the run script, because if you manually run these commands in sequence, it works as expected.Investigate packages that allow sequenced scripts that work cross-platform.
The text was updated successfully, but these errors were encountered: