-
Notifications
You must be signed in to change notification settings - Fork 22
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
Warning message as of React 0.14 #32
Comments
+1 |
I created a PR #33 |
Ah, beat me to it! |
another error: |
Good catch. Someone else wanna PR that one? |
I checked for the new React via |
@ffxsam we can simply give the latest version of the react package. So, we don't need to check for backward compatibility. |
So you mean react-layout will now require react 0.14 and above? |
Yes. I'll work on the PR :) |
Check We had to do few stuff to support SSR specially. |
upgraded to the v1.5.0 these upgrades happen too cosmos:browserify upgraded from 0.5.1 to 0.8.1
kadira:react-layout upgraded from 1.4.1 to 1.5.0
react upgraded from 0.1.13 to 0.14.1
react-meteor-data upgraded from 0.1.9 to 0.2.2
react-runtime upgraded from 0.13.3_7 to 0.14.1
react-runtime-dev upgraded from 0.13.3_7 to 0.14.1
react-runtime-prod upgraded from 0.13.3_6 to 0.14.1 cosmos:browserify new upgrade slows the rebuild process.. Please look in to this too |
I can also confirm the huge slow down in the rebuild process after browserify updated. |
I initally received the React.render not a function, removed the react package, then readded it, and now I am getting this console error: VM1567:2 Uncaught SyntaxError: Unexpected token < in JSON at position 1xo.onfinish @ sockjs-0.3.4.js:2018EventEmitter.emit @ sockjs-0.3.4.js:151that.xhr.onreadystatechange @ sockjs-0.3.4.js:848 and this command line error: while computing assigned variables: /packages/kadira_react-layout/packages/karia_react_layout.js: unexpected token: (69:12) I think kadira:react-layout is broken. Any way to fix this? |
The react package has been updated to 0.14, and as a result,
React.render
is no longer valid. For React 0.14 and up, it should beReactDOM.render
.The text was updated successfully, but these errors were encountered: