I've been developing an app using Webpack, Vue.js and Rails. No problems for two months, but out of nowhere when I try to start rails console rails c
, yarn
complains that packages out of date:
error An unexpected error occurred: "Unknown language key integrityNodeDoesntMatch".
info If you think this is a bug, please open a bug report with the information provided in "/Users/maksimfedotov/vras/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/check for documentation about this command.
========================================
Your Yarn packages are out of date!
Please run `yarn install` to update.
========================================
Yet when I run yarn install
:
yarn install v1.3.2
[1/4] π Resolving packages...
success Already up-to-date.
β¨ Done in 0.71s.
I've been looking through yarn and webpacker documentation, tried various yarn
cleanup commands, but no luck.
Interestingly enough, I can still run the server, its only console that complains.
yarn.lock
and runningyarn install
again? β Milkandwaterrails c
andrails g ...
. Deleting node_modules and yarn.lock doesn't help β Havenerspring stop
as a simple fix after every configuration change and before deleting anything. β Milt