Skip to content

Commit 2491e6b

Browse files
committed
Merge pull request #9 from ember-cli-deploy/enrich-revision-data
add plain option
2 parents 8608f67 + bcffd63 commit 2491e6b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ var DeployPluginBase = CoreObject.extend({
4848
}
4949
return configuredValue;
5050
},
51+
52+
logRaw: function(message) {
53+
var ui = this.ui;
54+
ui.writeLine(message);
55+
},
56+
5157
log: function(message, opts) {
5258
opts = opts || { color: 'blue' };
5359
opts.color = opts.color || 'blue';
@@ -66,7 +72,7 @@ var DeployPluginBase = CoreObject.extend({
6672
}
6773

6874
var chalkColor = chalk[opts.color];
69-
ui.writeLine(chalkColor('- ' + message));
75+
this.logRaw(chalkColor('- ' + message));
7076
}
7177
}
7278
});

0 commit comments

Comments
 (0)