LoginSignup
22

More than 5 years have passed since last update.

posted at

updated at

npm-run-all とは

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 [実行タスク] - 実行タスクを、順次実行

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
22