Created
December 19, 2019 10:01
-
-
Save fatihyildizhan/3e4e038422e7522211409a93e3302ee1 to your computer and use it in GitHub Desktop.
Upgrade Older Expo Versions to 33+ with yarn or npm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1- app.json > change sdk version to "sdkVersion": "33.0.0" | |
2- package.json > change these to | |
"expo": "^33.0.0" | |
"react": "16.8.3", | |
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz" | |
3- delete node_modules folder | |
4- yarn cache clean | |
5- npm install node-pre-gyp ** if you are on Windows | |
6- npm upgrade | |
7- npm install | |
8- install nodejs 12.9.0 64bit. ** This version does not give Regex Error. This is why I choose. | |
9- expo start | |
** you can also run expo upgrade now to higher versions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment