@fulminate/cli
Advanced tools
Comparing version 2.1.8 to 2.1.9
@@ -12,6 +12,7 @@ #!/usr/bin/env node | ||
var argv = minimist(process.argv.slice(2)); | ||
console.log(argv); | ||
if (argv._.indexOf('eastwood') !== -1) { | ||
_1.EastwoodCommand(); | ||
} | ||
else if (argv.bootstrap !== undefined || argv._.bootstrap) { | ||
else if (argv.bootstrap !== undefined || argv._.indexOf('bootstrap') !== -1) { | ||
_1.Shell.write(typedi_1.Container.get(_1.CliLogoFactory).build(), 'cyan', 'bold'); | ||
@@ -18,0 +19,0 @@ _1.BootstrapCommand(argv.bootstrap ? argv.bootstrap : '').then(function () { |
{ | ||
"name": "@fulminate/cli", | ||
"version": "2.1.8", | ||
"version": "2.1.9", | ||
"description": "CLI for bootstrapping and simplifying control over Fulminate Framework projects.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,3 +49,3 @@ "use strict"; | ||
spinnerFactory = typedi_1.Container.get(_1.CliSpinnerFactory); | ||
projectDir = path_1.join(_1.getWorkingDirectory(), projectName); | ||
projectDir = projectName !== '' ? path_1.join(_1.getWorkingDirectory(), projectName) : _1.getWorkingDirectory(); | ||
countdown = spinnerFactory.build('Downloading bootstrap package...'); | ||
@@ -52,0 +52,0 @@ countdown.start(); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
84455
723