Skip to content

Commit 4e47a12

Browse files
author
Aaron Chambers
committed
Merge pull request #10 from lukemelia/consistent-logging
A few tweaks to log output
2 parents 21949dd + a77ae68 commit 4e47a12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
createDeployPlugin: function(options) {
1515
function _beginMessage(ui, buildEnv, outputPath) {
1616
ui.write(blue('| '));
17-
ui.writeLine(blue('- building app using buildEnv `' + buildEnv + '` to `' + outputPath + '`'));
17+
ui.writeLine(blue('- building app to `' + outputPath + '` using buildEnv `' + buildEnv + '`...'));
1818

1919
return Promise.resolve();
2020
}
@@ -25,7 +25,7 @@ module.exports = {
2525
if (files && files.length) {
2626
files.forEach(function(path) {
2727
ui.write(blue('| '));
28-
ui.writeLine(blue('- built: ' + path));
28+
ui.writeLine(blue('- ' + path));
2929
});
3030
}
3131

0 commit comments

Comments
 (0)