Merged
Conversation
gregberge
approved these changes
Jan 16, 2022
|
FYI this merge broke. I am using SSR and this is caught on the server side compiling with webpack |
Contributor
Author
It was an intentional choice of the package owner to break compatibility with CJS. You can follow the error message's suggestion to consume it in CJS. Please see the release notes of the semver major bump specifically mentioning the breaking change: https://github.com/gregberge/react-merge-refs/releases/tag/v2.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Previously,
react-merge-refswas distributing both CJS and ESM, which is unnecessary (ESM can import CJS just fine). Additionally the package.json was not properly configured to publicise the ESM distribution.Now, only CJS is built and distributed, and package.json properly publicises both for use by either CJS or ESM.
Fixes #16
Test plan
These should both return
{ default: [Function: mergeRefs] }(they fail onmain, but succeed on this branch).This should not be a breaking change.