From 13621ed28365f27c11f980064ef493521bb31d5a Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 6 Aug 2025 15:23:30 -0400 Subject: [PATCH] refactor(@angular/build): provide private component stylesheet bundling API for internal compilation infrastructure The `ComponentStylesheetBundler` class is now available from the `private` entry point for the `@angular/build` package. All items exposed from this entry point are not subject to SemVer guarantees and may change between releases. Use with caution as breakage may occur when updating versions. --- packages/angular/build/src/private.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/angular/build/src/private.ts b/packages/angular/build/src/private.ts index 950a54797250..e572ac02b216 100644 --- a/packages/angular/build/src/private.ts +++ b/packages/angular/build/src/private.ts @@ -60,6 +60,7 @@ export function createCompilerPlugin( export type { AngularCompilation } from './tools/angular/compilation'; export { createAngularCompilation }; +export { ComponentStylesheetBundler } from './tools/esbuild/angular/component-stylesheets'; // Utilities export * from './utils/bundle-calculator';