MacのAutomatorでnpmコマンドを使う
自動ビルドはCIに組み込むのが一般的だが、一時的にローカルで検証用のenvファイルに差し替えてビルドしたいときがあったりする。
何が問題か?
Automatorでシェルスクリプトを使えるシェルスクリプトを実行
アクションの実行環境はターミナルの環境依存を継承しないためnpmコマンドをそのまま使うことがでず、npm command not found
エラーが発生する。つまりパスが通っていない状態。
解決法
最初にnpmへのパスを通すためにシェルスクリプトを実行
アクションのシェルウィンドウに以下を入力。
1行目でパスを通した後はnpmコマンドを実行できる。
export PATH=$PATH:/usr/local/bin
cd myProjectDir
npm run build
Author And Source
この問題について(MacのAutomatorでnpmコマンドを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/07JP27/items/db402c1a2028d56ce42a著者帰属:元の著者の情報は、元の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 .