@busy-web/cli
Advanced tools
Comparing version 0.7.7 to 0.7.8
{ | ||
"name": "@busy-web/cli", | ||
"version": "0.7.7", | ||
"version": "0.7.8", | ||
"description": "Command line tools to enhance web dev tasks", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -44,4 +44,2 @@ /** | ||
run(branch, tag) { | ||
this.ui.info(`Deploy for branch: ${branch}, tag: ${tag}`); | ||
let cwd = process.cwd(); | ||
@@ -60,3 +58,3 @@ let pkgInfo = require(path.join(cwd + '/package.json')); | ||
this.ui.info(`Preparing production deploy for tag: ${tag}`); | ||
//return emberDeploy.call(this, 'production'); | ||
return emberDeploy.call(this, 'production'); | ||
} else if (!isEmpty(branch)) { | ||
@@ -63,0 +61,0 @@ this.ui.info(`Preparing deploy for branch: ${branch}`); |
@@ -195,6 +195,3 @@ /** | ||
return this.cmd(`git commit -am "Release Version: ${version} [ci skip]"`, { hidecmd: true }) | ||
.then(res => { | ||
this.ui.info(res); | ||
return `Created release commit`; | ||
}); | ||
.then(() => `git commit -> "Release Version ${version} [ci skip]"`); | ||
} | ||
@@ -201,0 +198,0 @@ |
54084
1378