FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

refactor(@angular/build): Expose codeBundleCache to buildApplicationInternal by Aukevanoost · Pull Request #32527 · angular/angular-cli · GitHub

refactor(@angular/build): Expose codeBundleCache to buildApplicationInternal - #32527

Open
Aukevanoost wants to merge 1 commit into
angular:mainfrom
Aukevanoost:feat/expose-cache
Open

refactor(@angular/build): Expose codeBundleCache to buildApplicationInternal#32527
Aukevanoost wants to merge 1 commit into
angular:mainfrom
Aukevanoost:feat/expose-cache

Conversation

Aukevanoost commented Feb 20, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

First off, thanks for having a look at this!

This PR exposes the codeBundleCache used in executeBuild part of the buildApplicationInternal to allow for performant multi-builder setups (because they can share the TS cache).

PR Checklist

Please check to confirm your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Other... Please describe:

What is the current behavior?

Right now the SourceFileCache is initialized locally in the executeBuild() function.

Issue Number: N/A

What is the new behavior?

The SourceFileCache is now part of the InternalOptions, allowing tools that use this builder to (optionally) provide a shared cache that can be re-used over multiple builds. As fallback it will create the default cache object.

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

We (native-federation) need this feature to speed up our builder. This way we can share the cache between the ESBuild plugin and main builder which decreases our build time drastically:

If interested, find the changes on our end here (it's a proof-of-concept): https://github.com/native-federation/angular-adapter/pull/4/changes#diff-6508a5b483eb2d55fd58361931d864832b5ba20178c796d07be21f9e8ac327ae

alan-agius4 requested a review from clydin February 24, 2026 11:46
alan-agius4 added action: review The PR is still awaiting reviews from at least one requested reviewer labels Feb 27, 2026
Exposes the codeBundle cache used in executeBuild to allow for
performant multi-builder setups.

Copy link
Copy Markdown
Contributor Author

Hi all,

I had a small question. Is this feature/fix something that could (or is) considered for ng22? Are there any potential downsides for adding this extra option? For tools that rely on the Angular builder this could be a huge decrease in build time. I'm happy to discuss the details.

Also, I realized later that adding a predefined cache is not very productive if the cache is being purged right before starting the builder.[1] Would it make sense to skip purging the old cache if a codeBundleCache is provided?

Thanks

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

action: review The PR is still awaiting reviews from at least one requested reviewer area: @angular/build

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants


Back | FazBrowse Home | New Git URL