npm-run-all とは
公式 : npm-run-all
1. 概要
- `npm run clean && npm run build:css && npm run build:js && npm run build:html`
+ `npm-run-all clean build:*`
複数の npm-scripts を実行するためのコマンドラインツール
2. インストール方法
npm install node-run-all --save-dev
3. つかい方
Usage:
$ npm-run-all [--help | -h | --version | -v]
$ npm-run-all [実行タスク] [オプション]
実行タスクを、並行 or 順次に実行
Options:
-p, --parallel [実行タスク] - 実行タスクを、並列実行
-s, --sequential [実行タスク] - 実行タスクを、順次実行