15.0.0-next.3 (2022-09-28)
Breaking Changes
@angular-devkit/build-angular
-
The server builder
bundleDependencies
option has been removed. This option was used pre Ivy. Currently, using this option is unlikely to produce working server bundles.The
externalDependencies
option can be used instead to exclude specific node_module packages from the final bundle. -
- Deprecated support for tilde import has been removed. Please update the imports by removing the
~
.
Before
@import "~font-awesome/scss/font-awesome";
After
@import "font-awesome/scss/font-awesome";
- By default the CLI will use Sass modern API, While not recommended, users can still opt to use legacy API by setting
NG_BUILD_LEGACY_SASS=1
.
- Deprecated support for tilde import has been removed. Please update the imports by removing the
-
require.context
are no longer parsed. Webpack specific features are not supported nor guaranteed to work in the future.
@schematics/angular
@angular/cli
Commit | Description |
---|---|
add builders and schematic names as page titles in collected analytics |
@angular-devkit/build-angular
Special Thanks
Alan Agius, Jason Bedard and Paul Gschwendtner