Skip to content

Commit

Permalink
fix(@ngtools/webpack): fix error in compiler CLI when i18nFormat is u…
Browse files Browse the repository at this point in the history
…ndefined. (#6617)
  • Loading branch information
rayros authored and Brocco committed Jun 21, 2017
1 parent c9c27a6 commit 8da9bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@ngtools/webpack/src/extract_i18n_plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export class ExtractI18nPlugin implements Tapable {
program: this._program,
host: this._compilerHost,
angularCompilerOptions: this._angularCompilerOptions,
i18nFormat: this._i18nFormat,
i18nFormat: this._i18nFormat || '',
locale: this._locale,
outFile: this._outFile,

Expand Down

0 comments on commit 8da9bcc

Please sign in to comment.