-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
React 0.14 #127
Comments
Is 0.14 released? It does not appear so. We can't just go ahead and break compatibility with React 0.13 for the sake of a single warning until 0.14 is released as a stable version. |
(To clarify: there are a few PRs fixing 0.14 warnings and I'll merge them when it's out, but not before that.) |
And note that it's not really stopping you. It looks like an error but it's just a soft warning. Ignore it and you'll be fine. |
If you don't like the error because of OCD (like me) or whatever... I've made a temporary fork here: package.json "devDependencies": {
"redux-devtools": "git+ssh://git@github.com:tomatau/redux-devtools.git", Simply uses ReactDOM for findDOMNode instead of react. I'll be deleting the fork when fixes merged. |
Thanks @tomatau ! |
[edit]:
Any chance a fix can be merged for this instead as it's such a tiny fix. src/react/LogMonitor.js import React, { PropTypes, findDOMNode, Component } from 'react'; becomes: import React, { PropTypes, Component } from 'react';
import { findDOMNode } from 'react-dom'; I would make the PR here but tests wouldn't run locally for me and don't have time to debug why. |
Got the tests running locally (bad npm version) and made a tiny PR |
It's a tiny fix but it breaks 0.13 compatibility. |
reduxjs/redux-devtools#127 (temporarily install patched redux-devtools until 0.14 is officially released) Add repo field to package.json to silence npm warning Document the need to allow popups for `npm run dev:nw` #110 Use https:// rather than ssh:// for temporary redux-devtools patch also, specify the only change necessary to fix console warnings tomatau/redux-devtools@d77ef99 Update monkey-patched redux-devtools to include built files Wait for the redux-devtools window to finish reloading before inserting our target node
reduxjs/redux-devtools#127 (temporarily install patched redux-devtools until 0.14 is officially released) Add repo field to package.json to silence npm warning Document the need to allow popups for `npm run dev:nw` #110 Use https:// rather than ssh:// for temporary redux-devtools patch also, specify the only change necessary to fix console warnings tomatau/redux-devtools@d77ef99 Update monkey-patched redux-devtools to include built files Wait for the redux-devtools window to finish reloading before inserting our target node
reduxjs/redux-devtools#127 (temporarily install patched redux-devtools until 0.14 is officially released) Add repo field to package.json to silence npm warning Document the need to allow popups for `npm run dev:nw` #110 Use https:// rather than ssh:// for temporary redux-devtools patch also, specify the only change necessary to fix console warnings tomatau/redux-devtools@d77ef99 Update monkey-patched redux-devtools to include built files Wait for the redux-devtools window to finish reloading before inserting our target node
reduxjs/redux-devtools#127 (temporarily install patched redux-devtools until 0.14 is officially released) Add repo field to package.json to silence npm warning Document the need to allow popups for `npm run dev:nw` #110 Use https:// rather than ssh:// for temporary redux-devtools patch also, specify the only change necessary to fix console warnings tomatau/redux-devtools@d77ef99 Update monkey-patched redux-devtools to include built files Wait for the redux-devtools window to finish reloading before inserting our target node
Currently redux-devtools is what is stopping me from upgrading to React 0.14.
in LogMonitor.
The text was updated successfully, but these errors were encountered: