Skip to content

Commit 5611999

Browse files
committed
style: fix empty console log
1 parent 3b1bef2 commit 5611999

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/webpack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export default class WebpackRunner {
149149
return webpackConfigs;
150150
}
151151

152-
console.log( "" );
152+
console.log();
153153

154154
this.#printCompilationStart();
155155

@@ -421,7 +421,7 @@ export default class WebpackRunner {
421421
}
422422

423423
#printCompilationReport ( error ) {
424-
console.log( "" );
424+
console.log();
425425

426426
const info = [];
427427

0 commit comments

Comments
 (0)