react-native rnpm windiows throws error -


i trying build sample uwp app using react-native. here package.json.

    `  {   "name": "netizen_uwp",   "version": "0.0.1",   "private": true,   "scripts": {     "start": "node node_modules/react-native/local-cli/cli.js start"   },   "dependencies": {     "react": "15.2.0-rc.1",     "react-native": "0.29.0-rc.0",     "react-native-windows": "0.29.0-rc.0"   },   "main": "index.android.js",   "devdependencies": {     "rnpm-plugin-windows": "^0.1.1"   },   "author": "",   "license": "isc",   "description": "" }` 

when run >rnpm windows,i getting attached error react/react-native/react-native-windows modules latest.enter image description here

can 1 me here?

this general problem react-native-windows being plugin. we're behind release train react-native. have solved problem using --windowsversion flag, in:

rnpm windows --windowsversion 0.29.0-rc.0

also, of react-native@>=0.31, no longer need use rnpm global command line, , instance use command "react-native windows".


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -