File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff 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' } ) ;
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments