Skip to content

Commit

Permalink
Fix typo that causes "TypeError: this.compiler.compiler is not a func…
Browse files Browse the repository at this point in the history
…tion" since compiler is undefined.
  • Loading branch information
huangc28 committed Jul 12, 2017
1 parent 95c7fa4 commit 6c0e452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Compiler.js
Expand Up @@ -71,7 +71,7 @@ class Watching {

this.compiler.applyPluginsAsync("additional-pass", err => {
if(err) return this._done(err);
this.compiler.compiler(onCompiled);
this.compiler.compile(onCompiled);
});
return;
}
Expand Down

1 comment on commit 6c0e452

@damianobarbati
Copy link

@damianobarbati damianobarbati commented on 6c0e452 Jul 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@huangc28 is this typo fix getting pushed anytime soon in patch?

Please sign in to comment.