[react-native-cli] Remove reference to packager.sh

This script was removed, need to remove the reference we had here.
This commit is contained in:
Martín Bigio 2015-10-20 22:15:30 -04:00
parent c15ec71238
commit 774bbc2f3a
1 changed files with 1 additions and 4 deletions

View File

@ -159,10 +159,7 @@ function createProject(name, verbose) {
var packageJson = {
name: projectName,
version: '0.0.1',
private: true,
scripts: {
start: 'node_modules/react-native/packager/packager.sh'
}
private: true
};
fs.writeFileSync(path.join(root, 'package.json'), JSON.stringify(packageJson));
process.chdir(root);