-
I need to lock a sub-dependency version !!! |
Beta Was this translation helpful? Give feedback.
Answered by
zkochan
Apr 22, 2022
Replies: 1 comment 3 replies
-
Using overrides. For instance: package.json: {
"pnpm": {
"overrides": {
"foo": "^1.0.0",
"quux": "npm:@myorg/quux@^1.0.0",
"bar@^2.1.0": "3.0.0",
"qar@1>zoo": "2"
}
}
} |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ckvv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using overrides. For instance:
package.json: