Skip to content

Commit 6d8fb67

Browse files
committed
chore: one liner after log
1 parent 6ded275 commit 6d8fb67

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

‎bin/cli.js‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -487,10 +487,8 @@ For more information, see https://webpack.js.org/api/cli/.`);
487487
process.stdin.resume();
488488
}
489489
compiler.watch(watchOptions,compilerCallback);
490-
if(compiler.close){
491-
compiler.close(compilerCallback);
492-
}
493490
if(outputOptions.infoVerbosity!=="none")console.error("\nwebpack is watching the files…\n");
491+
if(compiler.close)compiler.close(compilerCallback);
494492
}else{
495493
compiler.run(compilerCallback);
496494
if(compiler.close){

0 commit comments

Comments
 (0)