0.2.0 • Published 7 years ago
bloodyowl-upgrade-reason-react v0.2.0
Upgrade Reason React
Upgrade your ReasonReact codebase to 0.7.0 (the release with hooks).
Installation
$ yarn add bloodyowl-upgrade-reason-reactUsage
Run the script
$ find src -name "*.re" | yarn Upgrade
$ # or on windows
$ find src -name "*.re" | yarn Upgrade.exeIf you've alias ReasonReact to React, search and replace it back to ReasonReact.
Search and replace:
ReasonReact.UpdatetoUpdateReasonReact.UpdateWithSideEffectstoUpdateWithSideEffectsReasonReact.SideEffectstoSideEffectsReasonReact.NoUpdatetoNoUpdate
Install reason-react from this fork's master branch
Install those:
$ yarn add reason-react-update
$ yarn add reason-react-compatChange JSX version in bsconfig.json
"reason": {
- "react-jsx": 2
+ "react-jsx": 3
},Update places where you use DOM refs (whether use React.createRef or React.useRef above your components).
Please do check places where you use handle code, this might break.
This script isn't magic: some heuristics I use are from personal experience and don't match any codebase. That said, it should do the heavy lifting and let you with details that would be hard to solve with an AST transformation. Let the compiler guide you once you ran the script.