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
Is your feature request related to a problem? Please describe.
When I npm install --save-dev @jefiozie/[email protected], its package.json has a peer dependency on [email protected] (not "^2.4.0". As our project uses [email protected], we always have to do an npm install --force to override the error.
Describe the solution you'd like
Ideally, not include this peer dependency in the package.json but if it has to be there, use "^2.4.0" instead of "2.4.0".
Describe alternatives you've considered npm install --force but we could miss something important by doing that.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When I
npm install --save-dev @jefiozie/[email protected]
, its package.json has a peer dependency on [email protected] (not "^2.4.0". As our project uses [email protected], we always have to do annpm install --force
to override the error.Describe the solution you'd like
Ideally, not include this peer dependency in the package.json but if it has to be there, use "^2.4.0" instead of "2.4.0".
Describe alternatives you've considered
npm install --force
but we could miss something important by doing that.The text was updated successfully, but these errors were encountered: