npm scriptのwatchで複数タスクを実行する方法
1334 ワード
概要
npm-run-allを使わない方法。
watchでビルドした後に自動でデプロイしたい。
方法
watch-deploy
でwatchして、複数の処理を&&で繋いでワンライナーで実行する。
; でコマンドを連結する場合、コマンド1がエラーであっても、次のコマンドが実行されるが、
&& で連結した場合はエラーが起きた時点で動作が停止する。
&&の代わりに&にすると並列処理になるらしい。
package.json
"scripts": {
"build": "【ビルド処理】",
"deploy": "【デプロイ処理】",
"watch-deploy": "watch 'npm run build && npm run deploy' ./components",
}
Author And Source
この問題について(npm scriptのwatchで複数タスクを実行する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/BlueTone/items/250652fa0f277ef03c36著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .