LoginSignup
67
56

More than 3 years have passed since last update.

[Rails] rails コマンドの際のyarnエラー yarn.lockで不整合が起きてる場合に起こる

Posted at

rails sの際にエラーが起きました

$ rails s
=> Booting Puma
=> Rails 6.0.0.rc1 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.17.3
info Visit https://yarnpkg.com/en/docs/cli/check for documentation about this command.


Exiting

ログ通りに

yarn install --check-files

を実行するとサーバーは起動できるものの
ブラウザでアプリを開いた時にcssライブラリたちが効いていない
事象に陥りました。

$ yarn upgrade

とすることで一発で解決できます

67
56
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
67
56