Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(@angular/build): support custom resolution conditions with applications #29954

Merged
merged 2 commits into from
Mar 31, 2025

Conversation

clydin
Copy link
Member

@clydin clydin commented Mar 26, 2025

When using the application build system, a new conditions option is now available that allows adding custom package resolution conditions that can adjust the resolution for conditional exports and imports. By default the module and production/development conditions will be present with the later dependent on the optimization option. If any custom conditions value is present including an empty array, none of these defaults will be present and must be manually included if needed. The following special conditions will always be present if their respective requirements are satisfied:

  • es2015 (required by rxjs)
  • es2020 (APF backwards compatibility)
  • default
  • import
  • require
  • node
  • browser

For additional information regarding conditional exports/imports:
https://nodejs.org/api/packages.html#conditional-exports
https://nodejs.org/api/packages.html#subpath-imports

@clydin clydin added the target: major This PR is targeted for the next major release label Mar 26, 2025
@angular-robot angular-robot bot added detected: feature PR contains a feature commit area: @angular/build labels Mar 26, 2025
@clydin clydin force-pushed the application/custom-conditions branch from fea7df6 to 631ba2c Compare March 27, 2025 01:06
…cations

When using the application build system, a new `conditions` option is now
available that allows adding custom package resolution conditions that
can adjust the resolution for conditional exports and imports.
By default the `module` and `production`/`development` conditions will be
present with the later dependent on the `optimization` option. If any
custom conditions value is present including an empty array, none of these
defaults will be present and must be manually included if needed.
The following special conditions will always be present if their respective
requirements are satisfied:
* es2015 (required by rxjs)
* es2020 (APF backwards compatibility)
* default
* import
* require
* node
* browser

For additional information regarding conditional exports/imports:
https://nodejs.org/api/packages.html#conditional-exports
https://nodejs.org/api/packages.html#subpath-imports
@clydin clydin force-pushed the application/custom-conditions branch 2 times, most recently from d59254a to f2c8f3f Compare March 28, 2025 15:13
The integration test setup for the dev-server was incorrectly using
the name of the `@angular-devkit/build-angular` builders. While this
previously had no effect, recent changes have altered the behavior of
the schema validation for the `@angular/build` builders. To ensure
accurate testing, the names are now correctly specified in the test setup.
@clydin clydin force-pushed the application/custom-conditions branch from f2c8f3f to 8cc3987 Compare March 28, 2025 15:13
@clydin clydin marked this pull request as ready for review March 29, 2025 03:28
@clydin clydin requested a review from alan-agius4 March 31, 2025 10:46
@clydin clydin added the action: review The PR is still awaiting reviews from at least one requested reviewer label Mar 31, 2025
Copy link
Collaborator

@alan-agius4 alan-agius4 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change itself LGTM, but what is the rational behind the change? Was there a feature request?

@jkrems
Copy link
Contributor

jkrems commented Mar 31, 2025

I'd have a slight concern about making the dev/prod thing configurable. Some of our dependencies (or future versions of our libraries) may make the reasonable assumption that one or the other is always present. E.g. this may prevent us from pre-generating ngDevmode-stripped published libraries in the future? Speculative, admittedly. :)

@clydin
Copy link
Member Author

clydin commented Mar 31, 2025

I went with consistency with other tooling in the dev/prod condition area. esbuild/vite/etc. only keep "special" conditions if customization is present. This can be relevant for something like a staging build which may want optimization but with development code or vice versa.

@clydin clydin removed the action: review The PR is still awaiting reviews from at least one requested reviewer label Mar 31, 2025
@clydin
Copy link
Member Author

clydin commented Mar 31, 2025

This addition was also motivated by this issue wherein import conditions were a viable alternative to file replacements for development/production scenarios but not staging or similar cases.
#29546

@jkrems
Copy link
Contributor

jkrems commented Mar 31, 2025

I will caution that "production" means "non-debug" or "release" and confusingly isn't related to the deployment stage. Using "staging" to replace dev/prod ("debug" and "release") is effectively undefined behavior. You might end up with a wild mix of debug- and non-debug code in your build.

For deployment target-specific dependent file replacements, I would recommend using something different like "deploy:staging" and "deploy:production" etc..

@clydin
Copy link
Member Author

clydin commented Mar 31, 2025

Additional documentation on some recommended best practices is definitely a good idea.
I think consistency with the wider ecosystem where appropriate is useful for options like this but deviation may be viable in certain cases.
The behavior can also always be adjusted in the pre-release phase for v20 based on usage and feedback.

@clydin clydin added the action: merge The PR is ready for merge by the caretaker label Mar 31, 2025
@clydin clydin merged commit 9494b1f into angular:main Mar 31, 2025
33 checks passed
@clydin clydin deleted the application/custom-conditions branch March 31, 2025 18:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: merge The PR is ready for merge by the caretaker area: @angular/build detected: feature PR contains a feature commit target: major This PR is targeted for the next major release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants