Hope to support react-native 0.56
fzdm opened this issue · 3 comments
fzdm commented
Hi,There are many problems in the current version of react-native upgrade version 0.56.
gatspy commented
i have upgraded successfully.there are three steps:
- upgrade with react-native-git-upgrade
react-native-git-upgrade 0.56.0
- modify package.json && .babelrc
package.json
{
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.0.0-beta.47",
"babel-preset-react-native": "^5.0.0",
}
}
.babelrc
{
"presets": ["react-native"],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }],
]
}
- run app
rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean --force && yarn install
react-native run-ios