Skip to content

Commit b8c9667

Browse files
clydinangular-robot[bot]
authored andcommitted
fix(@angular-devkit/build-angular): remove unintended files in esbuild output stats table
When using the esbuild-based browser application builder, the stat output table was incorrectly displaying source map files and internal component resource files such as inline stylesheets as initial entries.
1 parent bff634f commit b8c9667

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

packages/angular_devkit/build_angular/src/builders/browser-esbuild/index.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -674,10 +674,20 @@ export default createBuilder(buildEsbuildBrowser);
674674

675675
function logBuildStats(context: BuilderContext, metafile: Metafile) {
676676
const stats: BundleStats[] = [];
677-
for (const [file, { bytes, entryPoint }] of Object.entries(metafile.outputs)) {
677+
for (const [file, output] of Object.entries(metafile.outputs)) {
678+
// Skip sourcemaps
679+
if (file.endsWith('.map')) {
680+
continue;
681+
}
682+
// Skip internal component resources
683+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
684+
if ((output as any)['ng-component']) {
685+
continue;
686+
}
687+
678688
stats.push({
679-
initial: !!entryPoint,
680-
stats: [file, '', bytes, ''],
689+
initial: !!output.entryPoint,
690+
stats: [file, '', output.bytes, ''],
681691
});
682692
}
683693

packages/angular_devkit/build_angular/src/builders/browser-esbuild/stylesheets.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,25 @@ export async function bundleComponentStylesheet(
159159
}
160160
}
161161

162+
let metafile;
163+
if (!result.errors) {
164+
metafile = result.metafile;
165+
// Remove entryPoint fields from outputs to prevent the internal component styles from being
166+
// treated as initial files. Also mark the entry as a component resource for stat reporting.
167+
Object.values(metafile.outputs).forEach((output) => {
168+
delete output.entryPoint;
169+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
170+
(output as any)['ng-component'] = true;
171+
});
172+
}
173+
162174
return {
163175
errors: result.errors,
164176
warnings: result.warnings,
165177
contents,
166178
map,
167179
path: outputPath,
168180
resourceFiles,
169-
metafile: result.errors ? undefined : result.metafile,
181+
metafile,
170182
};
171183
}

0 commit comments

Comments
 (0)