Is it possible to use resolutions in a similar manner as dependencies, but with a different package? I'm specifically curious if this can be done with NPM or Yarn.
"resolutions": {
"lodash": "npm:lodash-es@^14.7.x"
},
If I am able to do so, are there any potential issues beyond the usual risks when forcibly setting lodash
to a specific version?