はじめに
Railsでの環境構築中に起きたエラーを備忘録として残します。
解決方法
サーバーを立ち上げるとyarnがインストールされていないです
のような以下のエラーが発生
ターミナル
$ rails s
=> Booting Puma
=> Rails 6.0.3.2 application starting in development
=> Run `rails server --help` for more startup options
error Couldn't find an integrity file
error Found 1 errors.
========================================
Your Yarn packages are out of date!
Please run `yarn install --check-files` to update.
========================================
To disable this check, please change `check_yarn_integrity`
to `false` in your webpacker config file (config/webpacker.yml).
yarn check v1.22.4
info Visit https://yarnpkg.com/en/docs/cli/check for documentation about this command.
Exiting
あれ?インストールしているはずだけど!と思いながら
エラー通りにひとまず以下のコマンドを実行
ターミナル
$ yarn install --check-files
しかし、解決できず。。。
そこで以下のコマンドで、yarnのインストールではなく
アップグレードしてあげることで解消することができました!
ターミナル
$ yarn upgrade
同じ境遇の方はぜひ試してみてください。