You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This scripts follows a very naive approach, and while this may work for certain projects, it most certainly fails on bigger projects where deleting and reinstalling would lead to a vast amount of upgrades.
Your Readme.md is clear and honest about its behavior, yet it would be helpful to point people to other tools that convert a yarn.lock into a package-lock.json, and synp does just that:
$ npm install -g synp
$ cd project-using-yarn/
$ synp --source-file yarn.lock
Created package-lock.json
$ rm yarn.lock
$ npm ci
The text was updated successfully, but these errors were encountered:
This scripts follows a very naive approach, and while this may work for certain projects, it most certainly fails on bigger projects where deleting and reinstalling would lead to a vast amount of upgrades.
Your Readme.md is clear and honest about its behavior, yet it would be helpful to point people to other tools that convert a
yarn.lock
into apackage-lock.json
, andsynp
does just that:The text was updated successfully, but these errors were encountered: