This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
Revert accidental breaking change for 15.5 #20
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There's a bunch of changes to unpack here but basically:
prop-types
package.PropTypesDevelopmentReact15
: When you depend on[email protected]
in development, it runs type checks and shows warnings.PropTypesProductionReact15
: When you depend on[email protected]
in production, everything is a no-op. It doesn't run the type checks but the code is still there. Calling validators doesn’t throw. This fixes PropTypes throwing errors in production? #17.PropTypesDevelopmentStandalone
andPropTypesProductionStandalone:
: When you depend onprop-types
, it runs type checks and shows warnings in development. Manually calling validators throws. (Just like we warned in earlier releases of React itself.) This is not a breaking change because migrating toprop-types
is an intentional decision, and requires you to update your code. We could call it out more explicitly but it’s explained in README.I also cherry-picked @aweary’s two commits for reducing the browserify bundle from #18 so that I could verify my changes. Production UMD bundle shows dead code is eliminated correctly.
When we release 16, we can drop the
React15
tests, delete thefactory
indirection and bump the major version.