DEV Community

Discussion on: How to run multiple npm scripts in parallel

Collapse
 
jrc86 profile image
Jonas • Edited

This made me curious.
You can use ^& for cmd, that will not throw errors.
"test":"npm run test:bla ^& npm run test:ble"
Currently running some tests, seems npm-run-all -p works better than ^&.

Collapse
 
therealdanvega profile image
Dan Vega

I will have to give that a shot, thank you Jonas!