40 lines
1.3 KiB
JavaScript
Executable File
40 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict';
|
|
var spawn = require('cross-spawn').spawn;
|
|
|
|
run();
|
|
|
|
function run() {
|
|
spawn('expo-cli', process.argv.slice(2), { stdio: 'inherit' })
|
|
.on('exit', function(code) {
|
|
process.exit(code);
|
|
})
|
|
.on('error', function() {
|
|
console.warn('This command requires Expo CLI.');
|
|
var rl = require('readline').createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout,
|
|
});
|
|
rl.question('Do you want to install it globally [Y/n]? ', function(answer) {
|
|
rl.close();
|
|
if (/^n/i.test(answer.trim())) {
|
|
process.exit(1);
|
|
} else {
|
|
console.log("Installing the package 'expo-cli'...");
|
|
spawn('npm', ['install', '--global', '--loglevel', 'error', 'expo-cli'], {
|
|
stdio: ['inherit', 'ignore', 'inherit'],
|
|
}).on('close', function(code) {
|
|
if (code !== 0) {
|
|
console.error('Installing Expo CLI failed. You can install it manually with:');
|
|
console.error(' npm install --global expo-cli');
|
|
process.exit(code);
|
|
} else {
|
|
console.log('Expo CLI installed. You can run `expo --help` for instructions.');
|
|
run();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|