@angular/cli
@schematics/angular
Commit | Description |
---|---|
align labels in ai-config schema | |
remove explicit flag for host bindings | |
respect skip-install for tailwind schematic |
@angular-devkit/build-angular
Commit | Description |
---|---|
avoid extra tick in SSR builds |
@angular/build
@angular/ssr
Commit | Description |
---|---|
introduce BootstrapContext for isolated server-side rendering |
Breaking Changes
@angular/build
-
- TypeScript versions older than 5.9 are no longer supported.
@angular/ssr
-
The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
Before:
const bootstrap = () => bootstrapApplication(AppComponent, config);
After:
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, config, context);