Replies: 1 comment
-
See https://pnpm.io/npmrc#resolution-mode. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If I'm not mistaken, if I clone a repo where something like
"react": "^16"
was manually written in package.json,npm i
will install the latest version like16.14.0
, butpnpm i
will install16.0.0
. This causes bugs that are hard to catch. And when I do catch them it's hard to diagnose until I look into the lock file and realized what happened.Beta Was this translation helpful? Give feedback.
All reactions