Comparing version 0.1.6 to 0.1.7
@@ -86,11 +86,10 @@ #!/usr/bin/env node | ||
console.log(chalk.white.bold('Let\'s setup firebase')); | ||
exec('firebase init', (error, stdout, stderr) => { | ||
console.log(chalk.white.bold('Let\'s get started')); | ||
console.log(chalk.green('Step 1: cd into the newly created '), chalk.green.bold(appName), chalk.green(' directory')); | ||
console.log('----------------------------------------------------------'); | ||
console.log(chalk.green('Step 2: run '), chalk.green.bold('yarn run deploy')); | ||
console.log('----------------------------------------------------------'); | ||
// add your own custom messages here. | ||
console.log('----------------------------------------------------------'); | ||
}); | ||
execSync('firebase init', { stdio: 'inherit' }); | ||
console.log(chalk.white.bold('Let\'s get started')); | ||
console.log(chalk.green('Step 1: cd into the newly created '), chalk.green.bold(appName), chalk.green(' directory')); | ||
console.log('----------------------------------------------------------'); | ||
console.log(chalk.green('Step 2: run '), chalk.green.bold('yarn run deploy')); | ||
console.log('----------------------------------------------------------'); | ||
// add your own custom messages here. | ||
console.log('----------------------------------------------------------'); | ||
}) | ||
@@ -97,0 +96,0 @@ .catch(error => { |
{ | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"main": "index.js", | ||
@@ -4,0 +4,0 @@ "bin": "bin/cli.js", |
24663
488