Using with React 16 (until 1.5.6 is published)
See original GitHub issueThis is a tip moreso than an issue. I just wanted to share with anyone else who wanted to upgrade their apps to the latest React and is facing an issue with dependencies requiring older versions.
This link has all of the steps to fix it, but the short version is to add this in your package.json
:
"dependencies": {...},
"resolutions": {
"react-google-charts/react": "16.0.0",
"react-google-charts/react-dom": "16.0.0"
},
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:5 (3 by maintainers)
Top Results From Across the Web
React v16.0 – React Blog
We're excited to announce the release of React v16.0! Among the changes are some long-standing feature requests, including fragments, ...
Read more >React 16.x Roadmap – React Blog
This post is just a roadmap — there is nothing in it that requires your immediate attention. When each of these features are...
Read more >Versions - React
React Versions. A complete release history for React is available on GitHub. Changelogs for recent releases can also be found below.
Read more >React v16.8: The One With Hooks
With React 16.8, React Hooks are available in a stable release! What Are Hooks? Hooks let you use state and other React features...
Read more >Introducing Hooks - React
Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class. ... This...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Awesome, thanks for sharing that !
As an FYI, I haven’t had time to publish the next version yet, I’d like it to be much more solid and better-tested but I haven’t had any time to put into open source lately.
Will update here, when it’s ready, with React 16 support 😃
Cheers !
Latest on npm should work with any React version >= 15.0.0