Skip to content

Upgrade Expo Demo SDK #2306

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

Merged
merged 3 commits into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unicorn-demo-app",
"version": "1.1.14",
"version": "1.1.16",
"main": "src/index.js",
"author": "Ethan Sharabi <[email protected]>",
"license": "MIT",
Expand All @@ -20,8 +20,8 @@
"shell-utils": "^1.0.10"
},
"peerDependencies": {
"react": "^16.0.0",
"react-native": "^0.51.0",
"react": "^18.0.0",
"react-native": "^0.69.1",
"react-native-ui-lib": "*",
"semver": "^5.5.0"
}
Expand Down
1 change: 1 addition & 0 deletions expoDemo/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'react-native-gesture-handler';
import React from 'react';
import {AppRegistry} from 'react-native';
import {map} from 'lodash';
Expand Down
3 changes: 2 additions & 1 deletion expoDemo/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = function(api) {
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
plugins: ['react-native-reanimated/plugin']
};
};
37 changes: 19 additions & 18 deletions expoDemo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,30 @@
"eject": "expo eject"
},
"dependencies": {
"@react-navigation/native": "^6.0.4",
"@react-navigation/stack": "^6.0.9",
"expo": "~42.0.1",
"expo-status-bar": "~1.0.4",
"@react-native/normalize-color": "^2.0.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/stack": "^6.0.13",
"expo": "^46.0.0",
"expo-status-bar": "~1.4.0",
"fuzzysearch": "^1.0.3",
"lodash": "^4.17.21",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-svg": "12.1.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-gesture-handler": "~2.5.0",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-ui-lib": "snapshot",
"react-native-web": "~0.13.12",
"react-native-web": "~0.18.7",
"unicorn-demo-app": "snapshot"
},
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"typescript": "~4.0.0"
"@babel/core": "^7.18.6",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"typescript": "^4.6.3"
},
"private": true
}