Skip to content

Commit 6095a92

Browse files
committed
Merge pull request #13 from ember-cli-deploy/verbose-support
Update to use new verbose option for logging
2 parents d43eeca + ef14775 commit 6095a92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = {
5959
var absoluteInputPath = path.join(root, inputPath);
6060
var absoluteOutputPath = path.join(root, outputPath);
6161

62-
this.log('generating `' + outputPath + '` from `' + inputPath + '`');
62+
this.log('generating `' + outputPath + '` from `' + inputPath + '`', { verbose: true });
6363

6464
return readFile(absoluteInputPath)
6565
.then(extractConfigFromHtmlAsJson.bind(this))
@@ -72,8 +72,8 @@ module.exports = {
7272
},
7373

7474
_successMessage: function(outputPath, fileOutputPattern) {
75-
this.log('generated: `' + outputPath + '`');
76-
this.log('added `' + fileOutputPattern + '` to `context.distFiles`');
75+
this.log('generated: `' + outputPath + '`', { verbose: true });
76+
this.log('added `' + fileOutputPattern + '` to `context.distFiles`', { verbose: true });
7777
return Promise.resolve();
7878
},
7979

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"chalk": "^1.0.0",
4848
"cheerio": "^0.19.0",
4949
"ember-cli-babel": "^5.0.0",
50-
"ember-cli-deploy-plugin": "^0.1.1",
50+
"ember-cli-deploy-plugin": "0.2.0",
5151
"rsvp": "^3.0.18"
5252
},
5353
"ember-addon": {

0 commit comments

Comments
 (0)