-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Don't use exact versions in peerDependencies #3073
Conversation
# Conflicts: # app/vue/package.json
Codecov Report
@@ Coverage Diff @@
## master #3073 +/- ##
=======================================
Coverage 36.08% 36.08%
=======================================
Files 438 438
Lines 9447 9447
Branches 891 875 -16
=======================================
Hits 3409 3409
- Misses 5456 5498 +42
+ Partials 582 540 -42
Continue to review full report at Codecov.
|
@@ -72,6 +72,6 @@ | |||
"babel-core": "^6.26.0 || ^7.0.0-0", | |||
"babel-runtime": ">=6.0.0", | |||
"react": "*", | |||
"react-native": "0.52.2" | |||
"react-native": ">=0.51.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rn is actually pretty tricky to upgrade. it needs matched versions of all the tooling as well for everything to bundle, compile, and work. I still think this is the right move though.
Don't use exact versions in peerDependencies # Conflicts: # app/react-native/package.json # app/vue/package.json
Issue: dependencies.io broke our
peerDependencies
with commits like this, setting them to exact version. This makes those peerDeps quite useless3bfbc7a#diff-4c0bffca46303f18a36ec22ddc6e5755R85
Related issue for dependencies.io: https://github.com/dependencies-io/actor-js-lerna/issues/39