upate packager command and use nvm when available

This commit is contained in:
Ari Lazier 2015-11-23 18:56:03 -08:00
parent eb3c973947
commit bcd667067c
2 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "rm -rf ./node_modules/realm\nnpm install realm";
shellScript = "rm -rf ./node_modules/realm\n[ -s \"${HOME}/.nvm/nvm.sh\" ] && . \"${HOME}/.nvm//nvm.sh\"\nnpm install realm";
};
/* End PBXShellScriptBuildPhase section */

View File

@ -3,10 +3,10 @@
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node_modules/react-native/packager/packager.sh"
"start": "react-native start"
},
"dependencies": {
"react-native": "0.14.2",
"react-native": "^0.14.2",
"realm": "file:../../lib"
}
}