Skip to content

Commit e31d5f0

Browse files
committed
minor fixes
1 parent 7ee95a4 commit e31d5f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack/cssWatchRebuildPlugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ module.exports = class CssWatchRebuildPlugin {
1111
apply(compiler) {
1212
compiler.hooks.watchRun.tap('CssWatchRebuildPlugin', (compilation) => {
1313

14-
console.log(compiler.watchMode, '!!!');
1514
// setup watch
1615
if (compiler.watchMode && !this.initialized) {
1716
// console.log("setup watch on styles");
@@ -34,7 +33,8 @@ module.exports = class CssWatchRebuildPlugin {
3433

3534
// console.log("setup watch on ", path);
3635
}
37-
this.initialized = true
36+
37+
this.initialized = true;
3838
}
3939
});
4040

0 commit comments

Comments
 (0)