mysticatea/npm-run-all
A CLI tool to run multiple npm-scripts in parallel or sequential. Simplify. The official npm run-script command cannot run multiple scripts, so if we want to run multiple scripts, it's redundant a bit. Let's shorten it by glob-like patterns. Before:npm run clean && npm run build:css && npm run build:js && npm run build:html After:npm-run-all clean build:* Cross platform.
https://github.com/mysticatea/npm-run-all