-
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
any plans for ReactJS 0.14? #23
Comments
Im not using this anymore, so no. Ill happily accept a PR though. |
+10 |
@ddispaltro are you using an alternative for play? |
no, I am just using different tools at the moment. |
For those wondering, add the following to your plugins.sbt: dependencyOverrides += "org.webjars" % "react" % "0.14.3" that seemed to do the trick for me. I still needed to add a dependency on react to my build.sbt as well. |
One thing to note is that facebook has deprecated jstransform, which appears to be the underlying tool used by this plugin to actually transform jsx into javascript, in favor of babel. https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html |
The plugin works perfectly fine with 0.14 now |
@stejskal I'm looking to update to React v15.x now, do you possibly have an idea of how to use babel in the build pipeline instead? |
For babel i use this sbt babel plugin: https://github.com/zenato/sbt-babel |
Just to add to @stejskal Just create a {
"presets": ["env", "react"]
} And npm-install the babel and the relevant presets, as with: npm install --save-dev babel-core babel-preset-env babe-preset-react |
No description provided.
The text was updated successfully, but these errors were encountered: