We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 21949dd + a77ae68 commit 4e47a12Copy full SHA for 4e47a12
index.js
@@ -14,7 +14,7 @@ module.exports = {
14
createDeployPlugin: function(options) {
15
function _beginMessage(ui, buildEnv, outputPath) {
16
ui.write(blue('| '));
17
- ui.writeLine(blue('- building app using buildEnv `' + buildEnv + '` to `' + outputPath + '`'));
+ ui.writeLine(blue('- building app to `' + outputPath + '` using buildEnv `' + buildEnv + '`...'));
18
19
return Promise.resolve();
20
}
@@ -25,7 +25,7 @@ module.exports = {
25
if (files && files.length) {
26
files.forEach(function(path) {
27
28
- ui.writeLine(blue('- built: ' + path));
+ ui.writeLine(blue('- ✔ ' + path));
29
});
30
31
0 commit comments