chore: bump up Expo version in crna-kitchen-sink example (#4597)

Issue: N/A

## What I did

Update expo requirement from `^24.0.2` to `^30.0.1` for `crna-kitchen-sink` example. Also remove [`crna`](https://github.com/react-community/create-react-native-app)'s `react-native-scripts` to use `expo`.

Motivation: I tried to use `crna-kitchen-sink`, but [I got stuck in "Starting packager"](https://github.com/react-community/create-react-native-app/issues/203).

PS: `whatwg-fetch` was added to fix this issue: ["Can't Find Variable Self"](https://stackoverflow.com/questions/52269560/react-native-expo-cant-find-variable-self)
This commit is contained in:
Estevão Lucas 2018-10-30 12:08:49 -04:00 committed by Gytis Vinclovas
parent 8f1bb3b7d5
commit d33ac612f9
3 changed files with 22 additions and 14 deletions

View File

@ -1,3 +1,9 @@
# CRNA Kitchen Sink
This project was bootstrapped with [Create React Native App](https://github.com/react-community/create-react-native-app) and storybook using [storybook CLI](https://www.npmjs.com/package/@storybook/cli).
This project was bootstrapped wit [Expo](https://github.com/expo/expo-cli) and storybook using [storybook CLI](https://www.npmjs.com/package/@storybook/cli).
## Getting started
1. Install dependencies: `yarn install`
2. Run storybook: `yarn storybook`
3. Run the app: `yarn start`

View File

@ -1,10 +1,12 @@
{
"expo": {
"sdkVersion": "24.0.0",
"sdkVersion": "30.0.0",
"platforms": ["ios", "android"],
"androidStatusBarColor": "#C2185B",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#C2185B"
}
},
"assetBundlePatterns": ["**/*"]
}
}

View File

@ -2,12 +2,12 @@
"name": "crna-kitchen-sink",
"version": "0.1.0",
"private": true,
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "react-native-scripts android",
"eject": "react-native-scripts eject",
"ios": "react-native-scripts ios",
"start": "react-native-scripts start",
"android": "expo start --android",
"eject": "expo eject",
"ios": "expo start --ios",
"start": "expo start",
"storybook": "storybook start",
"test": "node node_modules/jest/bin/jest.js --watch"
},
@ -15,10 +15,11 @@
"preset": "jest-expo"
},
"dependencies": {
"expo": "^24.0.2",
"prop-types": "^15.6.0",
"expo": "^30.0.1",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-native": "^0.51.0"
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@storybook/addon-actions": "file:../../packs/storybook-addon-actions.tgz",
@ -40,9 +41,8 @@
"@storybook/addon-ondevice-knobs": "file:../../packs/storybook-addon-ondevice-knobs.tgz",
"@storybook/addon-ondevice-notes": "file:../../packs/storybook-addon-ondevice-notes.tgz",
"@storybook/ui": "file:../../packs/storybook-ui.tgz",
"jest-expo": "^24.0.0",
"jest-expo": "^30.0.0",
"react-dom": "^16.2.0",
"react-native-scripts": "^1.8.1",
"react-test-renderer": "~16.2.0"
"react-test-renderer": "^16.6.0"
}
}