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 efee3cb + a4e21d8 commit f60b8e4Copy full SHA for f60b8e4
index.js
@@ -56,7 +56,12 @@ var DeployPluginBase = CoreObject.extend({
56
if (!opts.verbose || (opts.verbose && ui.verbose)) {
57
if (ui.verbose) {
58
ui.write(blue('| '));
59
+ } else if (ui.actualOutputStream && ui.actualOutputStream.cursorTo) {
60
+ // on a real terminal we want to reset the cursor position
61
+ // to avoid overlap with other outputs
62
+ ui.actualOutputStream.cursorTo(0);
63
}
64
+
65
var chalkColor = chalk[opts.color];
66
ui.writeLine(chalkColor('- ' + message));
67
0 commit comments