npm-run-all 這個讓 npm 執行指令可選擇平行或是依序的套件,若要傳遞參數時,可以使用一些 arguments。這邊筆記下用法。
內容
舉些例子來說明:
1. run-p \“build-only {1} {2}\” — –mode=staging –port=8080
表示 build-only 後方的第一個參數會接上 –mode=staging,第二個參數則是 –port=8080
至於 run-p 是 npm-run-all 所提供的語法,代表可以平行執行
2. run-p \“build-only {@}\” — –mode=staging –port=8080
表示 build-only 後方的所有參數都傳入,你就不用一個個 {1}, {2} 這樣寫了
參考資料
1. npm-run-all
2. npm-run-all command