Skip to content

Commit 9c022bc

Browse files
committed
Merge pull request #291 from rolego/fix-htmlOutputTemplate-option
Bugfix: added missing option 'htmlOutputTemplate'
2 parents d2111ea + 21bacbb commit 9c022bc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tasks/modules/optionsResolver.js

Lines changed: 2 additions & 2 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ const propertiesFromTarget = ['amdloader', 'html', 'htmlOutDir', 'htmlOutDirFlat
1414
'templateCache', 'vs', 'watch'],
1515
propertiesFromTargetOptions = ['additionalFlags', 'comments', 'compile', 'compiler', 'declaration',
1616
'emitDecoratorMetadata', 'experimentalDecorators', 'failOnTypeErrors', 'fast', 'htmlModuleTemplate',
17-
'htmlVarTemplate', 'inlineSourceMap', 'inlineSources', 'isolatedModules', 'mapRoot', 'module', 'newLine', 'noEmit',
17+
'htmlVarTemplate', 'htmlOutputTemplate', 'inlineSourceMap', 'inlineSources', 'isolatedModules', 'mapRoot', 'module', 'newLine', 'noEmit',
1818
'noEmitHelpers', 'noEmitOnError', 'noImplicitAny', 'noResolve', 'preserveConstEnums', 'removeComments', 'sourceRoot',
1919
'sourceMap', 'suppressImplicitAnyIndexErrors', 'target', 'verbose'],
20-
delayTemplateExpansion = ['htmlModuleTemplate', 'htmlVarTemplate'];
20+
delayTemplateExpansion = ['htmlModuleTemplate', 'htmlVarTemplate', 'htmlOutputTemplate'];
2121

2222
let templateProcessor: (templateString: string, options: any) => string = null;
2323
let globExpander: (globs: string[]) => string[] = null;

0 commit comments

Comments
 (0)