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 896022d commit d5cfea5Copy full SHA for d5cfea5
1 file changed
src/compiler/events.ts
@@ -14,7 +14,7 @@ export class BuildEvents implements d.BuildEvents {
14
subscribe(eventName: 'buildLog', cb: (buildLog: d.BuildLog) => void): Function;
15
subscribe(eventName: d.CompilerEventName, cb: Function): Function {
16
const evName = getEventName(eventName);
17
- const callbacks = this.evCallbacks.get(eventName);
+ const callbacks = this.evCallbacks.get(evName);
18
19
if (callbacks == null) {
20
this.evCallbacks.set(evName, [cb]);
0 commit comments