Bart Stefanski
Published on

📜 Upgrading one dependency causes the whole yarn.lock to change - fix

Authors

I wanted to bump a dependency in a project with a frozen yarn.lock today. I typed yarn add libraryName@1.2.4 in the console and waited for results. It ended up updating approx. 10k lines, which was quite surprising! My first thought was to look for another solution to update a dependency because I thought maybe I had misread the commands. A couple of other alternatives, like yarn up or yarn upgrade, did not reduce the size of the diff.

When I finally looked at the content of the lock file, I saw that it only changed the things that were supposed to be changed, and the rest was just formatting and the order of dependencies and properties. Another major difference was that, in yarn, the key isn't wrapped in quotation marks. I quickly searched the internet and found one or two people with a similar problem, and in both cases, it was caused by someone using npm install instead of yarn.

Npm can use yarn.lock and can also update it and format it the way they want it to be. So a solution for this is to just ignore the size of the diff and continue on with your work calmly.

Screenshot of big yarn.lock diff