react-native-dom
react-native-dom copied to clipboard
error Unrecognized command "dom".
react-native dom error Unrecognized command "dom". info Run "react-native --help" to see a list of all available commands.
"rnpm-plugin-dom": "^0.5.0" "react": "16.9.0", "react-native": "0.61.5",
Reading another issue implied support for 0.56.0 of react-native is not complete so I changed from this: "react-native": "0.63.1" to "react-native": "0.55.0" (and it pulled in a different react-native-dom 0.2.0)
Went from:
"dependencies": { "react": "16.13.1", "react-native": "0.63.1", "react-native-dom": "^0.5.0" },
to this and it worked:
"dependencies": { "react": "16.13.1", "react-native": "0.55.0", "react-native-dom": "0.2.0" },
Or just do this as I had errors with latest react-native test app against 0.55.0 (Unexpected token in App.js - looks like a babel config issue) :
react-native init --version="0.55.0" MyTestApp