Restore minimum react native version ^0.56

This commit is contained in:
empyrical 2018-09-10 21:59:07 -06:00
parent 66ecb8b324
commit c3e2443d24
No known key found for this signature in database
GPG Key ID: 361A79873FCD3959
2 changed files with 3 additions and 2 deletions

View File

@ -58,6 +58,7 @@ Simply install React Native WebView and then use it in place of the core WebView
* `yarn flow-android` or `npm run flow-android` for Android
* If you want to add another React Native platform to this repository, you will need to create another `.flowconfig` for it. If your platform is `example`, copy the main flowconfig and rename it to `.flowconfig.example`. Then edit the config to ignore other platforms, and add `.*/*[.]example.js` to the ignore lists of the other platforms. Then add an entry to `package.json` like this:
* ` "flow-example": "flow check --flowconfig-name .flowconfig.example"`
* Currently you need to install React Native 0.57 to be able to test these types - `flow check` will not pass aganst 0.56.
## Maintainers

View File

@ -11,7 +11,7 @@
},
"peerDependencies": {
"react": "^16.0",
"react-native": "~0.57.0-rc.4"
"react-native": "^0.56"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
@ -19,6 +19,6 @@
},
"devDependencies": {
"flow-bin": "^0.80.0",
"react-native": "~0.57.0-rc.4"
"react-native": "^0.56"
}
}