-
Notifications
You must be signed in to change notification settings - Fork 73
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
No version of 'react-native-dom' found that satisfies a peer dependency on 'react-native@0.56.0' #62
Comments
Ah, that's because RND doesn't currently support RN 0.56 (I'm working really hard on it), so in the meantime you're going to have to downgrade to 0.55. This could also be an opportunity for anyone who's interested in contributing to improve that error message! |
i couldn't get started with
|
JIC it helps somebody I was attempting to do a little hello world following the Getting Started steps in the README but downgrading react to 0.55 as stated above... But me I was getting a different error from the bundler (Plugin 0 provided an invalid property of "default"). Googling I found that error mentioned here: Following the final tip given there did get it working for me i.e. my package.json looks like:
|
Should be added to the README that react-native v0.56 isn't supported. |
When use "$: react-native dom"
Appears:
No version of 'react-native-dom' found that satisfies a peer dependency on 'react-native@0.56.0'
This is my package.json:
{
"name": "dom",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.4.1",
"react-dom": "^16.4.1",
"react-native": "0.56.0",
"react-native-dom": "0.2.0"
},
"devDependencies": {
"babel-jest": "23.4.0",
"babel-preset-react-native": "^5",
"jest": "23.4.1",
"react-test-renderer": "16.4.1",
"rnpm-plugin-dom": "^0.1.1"
},
"jest": {
"preset": "react-native"
}
}
The text was updated successfully, but these errors were encountered: