Skip to content

Commit 83020fc

Browse files
committed
fix(@angular-devkit/build-angular): clear diagnostic cache when external templates change with esbuild builders
To prevent stale Angular template diagnostics from persisting in watch mode (including `ng serve`), the template diagnostic cache will now be invalidated based on the set of changed external template files. This ensures that the Angular AOT compiler will analyze the template again during the rebuild and clear any fixed errors.
1 parent 9c4a6be commit 83020fc

File tree

1 file changed

+20
-9
lines changed
  • packages/angular_devkit/build_angular/src/tools/esbuild/angular/compilation

1 file changed

+20
-9
lines changed

packages/angular_devkit/build_angular/src/tools/esbuild/angular/compilation/aot-compilation.ts

+20-9
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class AotCompilation extends AngularCompilation {
7878
let usingBuildInfo = false;
7979
if (!oldProgram) {
8080
oldProgram = ts.readBuilderProgram(compilerOptions, host);
81-
usingBuildInfo = true;
81+
usingBuildInfo = !!oldProgram;
8282
}
8383

8484
const typeScriptProgram = ts.createEmitAndSemanticDiagnosticsBuilderProgram(
@@ -93,6 +93,25 @@ export class AotCompilation extends AngularCompilation {
9393
findAffectedFiles(typeScriptProgram, angularCompiler, usingBuildInfo),
9494
);
9595

96+
// Get all files referenced in the TypeScript/Angular program including component resources
97+
const referencedFiles = typeScriptProgram
98+
.getSourceFiles()
99+
.filter((sourceFile) => !angularCompiler.ignoreForEmit.has(sourceFile))
100+
.flatMap((sourceFile) => {
101+
const resourceDependencies = angularCompiler.getResourceDependencies(sourceFile);
102+
103+
// Also invalidate Angular diagnostics for a source file if component resources are modified
104+
if (this.#state && hostOptions.modifiedFiles?.size) {
105+
for (const resourceDependency of resourceDependencies) {
106+
if (hostOptions.modifiedFiles.has(resourceDependency)) {
107+
this.#state.diagnosticCache.delete(sourceFile);
108+
}
109+
}
110+
}
111+
112+
return [sourceFile.fileName, ...resourceDependencies];
113+
});
114+
96115
this.#state = new AngularCompilationState(
97116
angularProgram,
98117
host,
@@ -103,14 +122,6 @@ export class AotCompilation extends AngularCompilation {
103122
this.#state?.diagnosticCache,
104123
);
105124

106-
const referencedFiles = typeScriptProgram
107-
.getSourceFiles()
108-
.filter((sourceFile) => !angularCompiler.ignoreForEmit.has(sourceFile))
109-
.flatMap((sourceFile) => [
110-
sourceFile.fileName,
111-
...angularCompiler.getResourceDependencies(sourceFile),
112-
]);
113-
114125
return { affectedFiles, compilerOptions, referencedFiles };
115126
}
116127

0 commit comments

Comments
 (0)