Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
fix(aot): remove template validation until we can properly handle the…
Browse files Browse the repository at this point in the history
… error message format
  • Loading branch information
danbucholtz committed Nov 30, 2017
1 parent 2022c40 commit d7c7136
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/aot/aot-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,7 @@ export async function runNg5Aot(context: BuildContext, tsConfig: TsConfig, aggre
.concat(program.getTsOptionDiagnostics())
.concat(program.getTsSemanticDiagnostics());

const angularDiagnostics = program.getNgSemanticDiagnostics()
.concat(program.getNgStructuralDiagnostics())
const angularDiagnostics = program.getNgStructuralDiagnostics()
.concat(program.getNgOptionDiagnostics());


Expand Down

0 comments on commit d7c7136

Please sign in to comment.