Require directly, don't spawn

This commit is contained in:
Joe Stanton
2015-05-14 15:18:44 +01:00
parent 132f8fa3ce
commit 2e2e577a09
5 changed files with 79 additions and 114 deletions

37
cli.js
View File

@@ -5,40 +5,3 @@
'use strict';
module.exports = require('./local-cli/cli.js');
var spawn = require('child_process').spawn;
var path = require('path');
function printUsage() {
console.log([
'Usage: react-native <command>',
'',
'Commands:',
' start: starts the webserver',
].join('\n'));
process.exit(1);
}
function run() {
var args = process.argv.slice(2);
if (args.length === 0) {
printUsage();
}
switch (args[0]) {
case 'start':
spawn('sh', [
path.resolve(__dirname, 'packager', 'packager.sh'),
'--projectRoots',
process.cwd(),
], {stdio: 'inherit'});
break;
default:
console.error('Command `%s` unrecognized', args[0]);
printUsage();
}
// Here goes any cli commands we need to
}
module.exports = {
run: run
};