Skip to content

Commit 6c0e452

Browse files
committed
Fix typo that causes "TypeError: this.compiler.compiler is not a function" since compiler is undefined.
1 parent 95c7fa4 commit 6c0e452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Compiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Watching {
7171

7272
this.compiler.applyPluginsAsync("additional-pass", err => {
7373
if(err) return this._done(err);
74-
this.compiler.compiler(onCompiled);
74+
this.compiler.compile(onCompiled);
7575
});
7676
return;
7777
}

0 commit comments

Comments
 (0)