-
Notifications
You must be signed in to change notification settings - Fork 12k
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
Conversation
fea7df6
to
631ba2c
Compare
…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
d59254a
to
f2c8f3f
Compare
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.
f2c8f3f
to
8cc3987
Compare
There was a problem hiding this 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?
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. :) |
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. |
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. |
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.. |
Additional documentation on some recommended best practices is definitely a good idea. |
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 themodule
andproduction
/development
conditions will be present with the later dependent on theoptimization
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:For additional information regarding conditional exports/imports:
https://nodejs.org/api/packages.html#conditional-exports
https://nodejs.org/api/packages.html#subpath-imports