Skip to content

Commit b9e898e

Browse files
committed
be sure to actually set emitGruntEvents if not there (though technically the default is falsy so it may not matter)
1 parent 859d106 commit b9e898e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

tasks/modules/optionsResolver.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tasks/modules/optionsResolver.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,5 +419,9 @@ function applyGruntTSDefaults(options: IGruntTSOptions) {
419419
options.failOnTypeErrors = GruntTSDefaults.failOnTypeErrors;
420420
}
421421

422+
if (!('emitGruntEvents' in options)) {
423+
options.emitGruntEvents = GruntTSDefaults.emitGruntEvents;
424+
}
425+
422426
return options;
423427
}

0 commit comments

Comments
 (0)