Update example project to a version of React Native that matches the packages needs

React Native 0.42.0 wants a version of React that matches ~15.4.1, rather than ^15.5.0, so we’ll pin to that match for now.
This commit is contained in:
Eli Perkins 2017-04-10 11:11:02 -04:00
parent 33cec7d141
commit 9817055f87
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
"start": "node_modules/react-native/packager/packager.sh" "start": "node_modules/react-native/packager/packager.sh"
}, },
"dependencies": { "dependencies": {
"react": "^15.3.2", "react": "~15.4.1",
"react-native": "^0.36.0", "react-native": "^0.42.0",
"react-native-blur": "file:../../" "react-native-blur": "file:../../"
} }
} }