Skip to content

v19.0.0-next.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@dgp1130 dgp1130 released this 28 Aug 21:34
· 139 commits to main since this release

19.0.0-next.2 (2024-08-28)

@schematics/angular

Commit Description
feat - a381a3db1 add option to export component as default

@angular/ssr

Commit Description
feat - 30c25bf68 export AngularAppEngine as public API
feat - 4b09887a9 move CommonEngine API to /node entry-point
fix - d43180af5 add missing peer dependency on @angular/platform-server

Breaking Changes

@angular/ssr

  • The CommonEngine API now needs to be imported from @angular/ssr/node.

    Before

    import { CommonEngine } from '@angular/ssr';

    After

    import { CommonEngine } from '@angular/ssr/node';