File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ module.exports = {
48
48
allowOverwrite : allowOverwrite
49
49
} ;
50
50
51
- this . log ( 'preparing to upload revision to S3 bucket `' + bucket + '`' ) ;
51
+ this . log ( 'preparing to upload revision to S3 bucket `' + bucket + '`' , { verbose : true } ) ;
52
52
53
53
var s3 = new S3 ( { plugin : this } ) ;
54
54
return s3 . upload ( options ) ;
@@ -67,7 +67,7 @@ module.exports = {
67
67
revisionKey : revisionKey ,
68
68
} ;
69
69
70
- this . log ( 'preparing to activate `' + revisionKey + '`' ) ;
70
+ this . log ( 'preparing to activate `' + revisionKey + '`' , { verbose : true } ) ;
71
71
72
72
var s3 = new S3 ( { plugin : this } ) ;
73
73
return s3 . activate ( options ) ;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ module.exports = CoreObject.extend({
59
59
. then ( function ( fileContents ) {
60
60
params . Body = fileContents ;
61
61
return putObject ( params ) . then ( function ( ) {
62
- plugin . log ( '✔ ' + key ) ;
62
+ plugin . log ( '✔ ' + key , { verbose : true } ) ;
63
63
} ) ;
64
64
} ) ;
65
65
} ,
Original file line number Diff line number Diff line change 49
49
"aws-sdk" : " ^2.1.48" ,
50
50
"core-object" : " ^1.1.0" ,
51
51
"ember-cli-babel" : " ^5.1.3" ,
52
- "ember-cli-deploy-plugin" : " ^0.1.3 "
52
+ "ember-cli-deploy-plugin" : " 0.2.0 "
53
53
},
54
54
"ember-addon" : {
55
55
"configPath" : " tests/dummy/config"
You can’t perform that action at this time.
0 commit comments