We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee95a4 commit e31d5f0Copy full SHA for e31d5f0
webpack/cssWatchRebuildPlugin.js
@@ -11,7 +11,6 @@ module.exports = class CssWatchRebuildPlugin {
11
apply(compiler) {
12
compiler.hooks.watchRun.tap('CssWatchRebuildPlugin', (compilation) => {
13
14
- console.log(compiler.watchMode, '!!!');
15
// setup watch
16
if (compiler.watchMode && !this.initialized) {
17
// console.log("setup watch on styles");
@@ -34,7 +33,8 @@ module.exports = class CssWatchRebuildPlugin {
34
33
35
// console.log("setup watch on ", path);
36
}
37
- this.initialized = true
+
+ this.initialized = true;
38
39
});
40
0 commit comments