Skip to content

Commit bbb04dd

Browse files
committed
Update to use new verbose option for logging
1 parent 07a9785 commit bbb04dd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ module.exports = {
3131
var distFiles = this.readConfig('distFiles');
3232
var manifestPath = this.readConfig('manifestPath');
3333

34-
this.log('generating manifest at `' + manifestPath + '`');
34+
this.log('generating manifest at `' + manifestPath + '`', { verbose: true });
3535
try {
3636
var filesToInclude = distFiles.filter(minimatch.filter(filePattern, { matchBase: true }));
3737
filesToInclude.sort();
3838
var outputPath = path.join(distDir, manifestPath);
3939
fs.writeFileSync(outputPath, filesToInclude.join('\n'));
40-
this.log('generated manifest including ' + filesToInclude.length + ' files ok');
40+
this.log('generated manifest including ' + filesToInclude.length + ' files ok', { verbose: true });
4141
return { manifestPath: manifestPath };
4242
} catch (error) {
4343
this.log(error, { color: 'red' });

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"dependencies": {
4646
"chalk": "^1.0.0",
4747
"core-object": "^1.1.0",
48-
"ember-cli-deploy-plugin": "0.1.2",
48+
"ember-cli-deploy-plugin": "0.2.0",
4949
"ember-cli-babel": "^5.0.0",
5050
"minimatch": "^2.0.8",
5151
"redis": "^0.12.1",

tests/unit/index-nodetest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ describe('manifest plugin', function() {
1212
beforeEach(function() {
1313
subject = require('../../index');
1414
mockUi = {
15+
verbose: true,
1516
messages: [],
1617
write: function() { },
1718
writeLine: function(message) {

0 commit comments

Comments
 (0)