Update project to Angular 10 🎉
Update all dependencies to latest versions.
To update your existing project please follow these steps.
If you re-download the files from your Angular Template account you don't need to do this because the template is already updated.
Remove any es5BrowserSupport
flags in your angular.json
and set your target to es2015
in your tsconfig.json
. Angular now uses your browserslist
to determine if an ES5 build is needed.
ng update
will migrate you automatically.
ng update @angular/core@8 @angular/cli@8 --create-commits
ng update @angular/core@9 @angular/cli@9 --create-commits
ng update @nguniversal/express-engine --force --create-commits
entryComponents
are no longer required. They can be removed from your code.
ng update @angular/core @angular/cli --create-commits
ng update rxjs --create-commits
Run npm outdated
and update all your libraries.
Update project to Angular 8
Remove BASE_URL and added Angular UniversalInterceptor (learn more in https://angular.io/guide/universal#using-absolute-urls-for-server-requests)
Updated all libraries
Update to Angular 7
Removed webpack process and replaced it with tsc
Updated all libraries to its latest versions