-
Notifications
You must be signed in to change notification settings - Fork 556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow patch-level range for auth0-js dep #1014
Comments
but there's no actual duplication, right? I mean.. npm3+ dedupes automatically, no? |
There is. NPM3 dedups only what is semver-valid for all dependencies. auth0-js@8.6.1 is not valid for 8.6.0 rule in auth0-lock so no dedup happen. |
Makes sense! Thanks for the PR 🎉 |
Thanks for merging 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please allow patch-level range for
auth0-js
dep in package.jsImagine you're using both
auth0-js
andauth0-lock
in your project. npm installs packages as you expect:but when you update auth0-js to the latest patch version it got duped:
it's quite annoying and does not respect npm versioning best practices, but who cares right? Unless you really need the latest patched version and not two versions, one of them not patched.
PR will follow
The text was updated successfully, but these errors were encountered: