Closed razh closed 9 years ago
Thanks for this. I haven't looked into React 0.14 much yet, but do you know if it's possible to maintain support for React 0.13 and 0.14 at the same time? If I accept this pull request, it will break for everyone using 0.12 or 0.13. I suppose I could maintain two separate branches, but I would prefer to avoid that if at all possible.
It's definitely an issue. I've only seen major-version bumps from other libraries.
There's no rush though. React 0.14 only warns about not using react-dom
right now.
Why not just relase a new version that uses react-dom
? User's with React 0.13 can stick with the old version and users with React 0.14 can use latest?
@ovaris It looks like that's what I'll have to do. I'll try to get that out today or tomorrow.
Great, many thanks!
@ovaris @razh published on npm @2.0.0
. Thanks for the pull!
This converts the following calls to use
react-dom
(which is added as a peer-dependency):All tests are passing on my machine with Node v0.10.9. The only issue is the warning for rendering into
document.body
added in 0.14.