Skip to content

Commit fc928f6

Browse files
committedJun 27, 2024·
fix(@angular/build): correctly name entry points to match budgets
This commit addresses an issue where some lazy entry points were not name correctly to align with specified budgets. Closes: #27936 (cherry picked from commit f3ba208)
1 parent 6aff0f8 commit fc928f6

File tree

3 files changed

+43
-7
lines changed

3 files changed

+43
-7
lines changed
 

‎packages/angular/build/src/builders/application/tests/options/bundle-budgets_spec.ts

+33
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,39 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
9393
);
9494
});
9595

96+
it(`should not warn when non-injected style is not within the baseline threshold`, async () => {
97+
harness.useTarget('build', {
98+
...BASE_OPTIONS,
99+
optimization: false,
100+
styles: [
101+
{
102+
input: 'src/lazy-styles.css',
103+
inject: false,
104+
bundleName: 'lazy-styles',
105+
},
106+
],
107+
budgets: [
108+
{ type: Type.Bundle, name: 'lazy-styles', warning: '1kb', error: '1kb', baseline: '2kb' },
109+
],
110+
});
111+
112+
await harness.writeFile(
113+
'src/lazy-styles.css',
114+
`
115+
.foo { color: green; padding: 1px; }
116+
`.repeat(24),
117+
);
118+
119+
const { result, logs } = await harness.executeOnce();
120+
expect(result?.success).toBeTrue();
121+
expect(logs).not.toContain(
122+
jasmine.objectContaining<logging.LogEntry>({
123+
level: 'warn',
124+
message: jasmine.stringMatching('lazy-styles failed to meet minimum budget'),
125+
}),
126+
);
127+
});
128+
96129
CSS_EXTENSIONS.forEach((ext) => {
97130
it(`shows warnings for large component ${ext} when using 'anyComponentStyle' when AOT`, async () => {
98131
const cssContent = `

‎packages/angular/build/src/tools/esbuild/budget-stats.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
*/
88

99
import type { Metafile } from 'esbuild';
10-
import { basename } from 'node:path';
1110
import type { BudgetStats } from '../../utils/bundle-calculator';
1211
import type { InitialFileRecord } from './bundler-context';
12+
import { getEntryPointName } from './utils';
1313

1414
/**
1515
* Generates a bundle budget calculator compatible stats object that provides
@@ -43,9 +43,7 @@ export function generateBudgetStats(
4343
let name = initialRecord?.name;
4444
if (name === undefined && entry.entryPoint) {
4545
// For non-initial lazy modules, convert the entry point file into a Webpack compatible name
46-
name = basename(entry.entryPoint)
47-
.replace(/\.[cm]?[jt]s$/, '')
48-
.replace(/[\\/.]/g, '-');
46+
name = getEntryPointName(entry.entryPoint);
4947
}
5048

5149
stats.chunks.push({

‎packages/angular/build/src/tools/esbuild/utils.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@ export function logBuildStats(
6666

6767
let name = initial.get(file)?.name;
6868
if (name === undefined && output.entryPoint) {
69-
name = basename(output.entryPoint)
70-
.replace(/\.[cm]?[jt]s$/, '')
71-
.replace(/[\\/.]/g, '-');
69+
name = getEntryPointName(output.entryPoint);
7270
}
7371

7472
const stat: BundleStats = {
@@ -496,3 +494,10 @@ export function isZonelessApp(polyfills: string[] | undefined): boolean {
496494
// TODO: Instead, we should rely on the presence of zone.js in the polyfills build metadata.
497495
return !polyfills?.some((p) => p === 'zone.js' || /\.[mc]?[jt]s$/.test(p));
498496
}
497+
498+
export function getEntryPointName(entryPoint: string): string {
499+
return basename(entryPoint)
500+
.replace(/(.*:)/, '') // global:bundle.css -> bundle.css
501+
.replace(/\.[cm]?[jt]s$/, '')
502+
.replace(/[\\/.]/g, '-');
503+
}

0 commit comments

Comments
 (0)
Please sign in to comment.