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

Commit d7c7136

Browse files
committed
fix(aot): remove template validation until we can properly handle the error message format
1 parent 2022c40 commit d7c7136

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/aot/aot-compiler.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,7 @@ export async function runNg5Aot(context: BuildContext, tsConfig: TsConfig, aggre
197197
.concat(program.getTsOptionDiagnostics())
198198
.concat(program.getTsSemanticDiagnostics());
199199

200-
const angularDiagnostics = program.getNgSemanticDiagnostics()
201-
.concat(program.getNgStructuralDiagnostics())
200+
const angularDiagnostics = program.getNgStructuralDiagnostics()
202201
.concat(program.getNgOptionDiagnostics());
203202

204203

0 commit comments

Comments
 (0)