Skip to content

Commit 0aaab46

Browse files
committed
Merge pull request #20 from ember-cli-deploy/verbose-support
Update to use new verbose option for logging
2 parents ce4896d + f25d592 commit 0aaab46

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ module.exports = {
3030
plugin: this
3131
});
3232

33-
this.log('creating revision data using `' + type + '`');
33+
this.log('creating revision data using `' + type + '`', { verbose: true });
3434
return dataGenerator.generate()
3535
.then(function(data) {
36-
self.log('generated revision data for revision: `' + data.revisionKey + '`');
36+
self.log('generated revision data for revision: `' + data.revisionKey + '`', { verbose: true });
3737
return data;
3838
})
3939
.then(function(data) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"chalk": "^1.0.0",
4848
"core-object": "^1.1.0",
4949
"ember-cli-babel": "^5.0.0",
50-
"ember-cli-deploy-plugin": "0.1.3",
50+
"ember-cli-deploy-plugin": "0.2.0",
5151
"git-repo-info": "^1.1.2",
5252
"minimatch": "^2.0.4",
5353
"rsvp": "^3.0.18"

tests/unit/index-nodetest.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ describe('the index', function() {
88
beforeEach(function() {
99
subject = require('../../index');
1010
mockUi = {
11+
verbose: true,
1112
messages: [],
1213
write: function() { },
1314
writeLine: function(message) {

0 commit comments

Comments
 (0)