jlengstorf / learn-rollup

This is an example project to accompany a tutorial on using Rollup.
https://code.lengstorf.com/learn-rollup-js/
ISC License
191 stars 61 forks source link

Use & instead of npm-run-all #18

Closed ArthurClemens closed 7 years ago

ArthurClemens commented 7 years ago

There's no need to install package npm-run-all when all it does is run 2 scripts in parallel. Simply write in package.json:

"watch": "npm run reload & npm run dev"
jlengstorf commented 7 years ago

@ArthurClemens That... is an excellent point. For the sake of consistency in the video I'm going to leave it unchanged, but I'll definitely make sure not to add unnecessary dependencies in future videos. Thanks!