問題
-
yarn run build
でエラーになる。$ yarn run build 00h00m00s 0/0: : ERROR: [Errno 2] No such file or directory: 'run'
解決策
- yarnのバージョンが古いだけ。
- 最新のyarnをインストールすればよい。
# 古いyarnを削除 $ sudo apt remove yarn $ sudo apt remove cmdtest $ sudo apt autoremove # 最新のyarnをインストール curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list sudo apt-get update sudo apt-get install yarn
以上