-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
atwbun installSomething that relates to the npm-compatible clientSomething that relates to the npm-compatible clientenhancementNew feature or requestNew feature or request
Description
What is the problem this feature will solve?
The dependencies of your project might use old versions of their dependencies. I hat the problem, that lmdb was incompatible with my processor (Apple M2). I had to override the lmdb version to get my project running.
What is the feature you are proposing to solve the problem?
npm has a option called overrides in the package.json. This allows to use another version of a dependency you have no control over.
For me, this was:
"overrides": {
"lmdb": "2.6.0-alpha6",
"@lmdb/lmdb-darwin-arm64": "2.6.0-alpha6",
"@lmdb/lmdb-darwin-x64": "2.6.0-alpha6",
},What alternatives have you considered?
using the good old npm
o-alexandrov, god-of-javascript, lewisl9029, sxzz, paperclover and 85 more
Metadata
Metadata
Assignees
Labels
atwbun installSomething that relates to the npm-compatible clientSomething that relates to the npm-compatible clientenhancementNew feature or requestNew feature or request