File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ function WebpackShellPlugin(options) {
49
49
WebpackShellPlugin . prototype . apply = function ( compiler ) {
50
50
var options = this . options ;
51
51
52
- compiler . plugin ( " compilation" , function ( compilation ) {
52
+ compiler . plugin ( ' compilation' , function ( compilation ) {
53
53
if ( options . verbose ) {
54
54
console . log ( 'Report compilation:' , compilation ) ;
55
55
}
56
56
if ( options . onBuildStart . length ) {
57
- console . log ( " Executing pre-build scripts" ) ;
57
+ console . log ( ' Executing pre-build scripts' ) ;
58
58
options . onBuildStart . forEach ( function ( script ) {
59
59
exec ( script , puts )
60
60
} ) ;
@@ -64,9 +64,9 @@ WebpackShellPlugin.prototype.apply = function (compiler) {
64
64
}
65
65
} ) ;
66
66
67
- compiler . plugin ( " emit" , function ( compilation , callback ) {
67
+ compiler . plugin ( ' emit' , function ( compilation , callback ) {
68
68
if ( options . onBuildEnd . length ) {
69
- console . log ( " Executing post-build scripts" ) ;
69
+ console . log ( ' Executing post-build scripts' ) ;
70
70
options . onBuildEnd . forEach ( function ( script ) {
71
71
exec ( script , puts )
72
72
} ) ;
You can’t perform that action at this time.
0 commit comments