-
Notifications
You must be signed in to change notification settings - Fork 499
Description
Angular 4 has been released.
A little background info: Angular 3 never existed, and the step from Angular 2 to 4 is a lot smaller than the step from 1 to 2 was. It's comparable DSpace 3 in that regard. You can find the reasoning behind the change here
This blogpost gives an overview of what's new, and how to migrate.
In our case migration won't be quite as simple as it is explained in that blogpost, because of Universal. Angular Universal used to be a separate project, but is included in Angular 4 now, so our dependencies and likely also a lot of the universal specific files (server.ts, node.module.ts, browser.module.ts, …) will need to change.
Universal starter, the boilerplate project we started from, has an open issue to migrate to 4: angular/universal-starter#376