File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -85,20 +85,20 @@ export default class WebpackBarPlugin extends webpack.ProgressPlugin {
85
85
// Started
86
86
this . state . start = process . hrtime ( ) ;
87
87
if ( this . options . minimal ) {
88
- this . stream . write ( `Compiling ${ this . options . name } \n` ) ;
88
+ this . options . stream . write ( `Compiling ${ this . options . name } \n` ) ;
89
89
}
90
90
delete this . state . time ;
91
91
} else if ( wasRunning && ! isRunning ) {
92
92
// Finished
93
93
const time = process . hrtime ( this . state . start ) ;
94
94
if ( this . options . minimal ) {
95
- this . stream . write (
95
+ this . options . stream . write (
96
96
`Compiled ${ this . options . name } in ${ prettyTime ( this . state . time ) } \n`
97
97
) ;
98
98
} else {
99
99
this . logUpdate . clear ( ) ;
100
100
if ( this . options . compiledIn ) {
101
- process . stdout . write (
101
+ this . options . stream . write (
102
102
`${ [
103
103
TICK ,
104
104
this . options . name ,
You can’t perform that action at this time.
0 commit comments