docs: updating guides and docs related to the v10 release (#37705)

Mostly just adding links to the migrations that were missing, adding the migrations into the navbar,
as well as correcting the @angular/bazel removal in the update guide.

I also added a commented out preamble for the release notes.

PR Close #37705
This commit is contained in:
Igor Minar
2020-06-24 07:51:55 -07:00
committed by Misko Hevery
parent c730142508
commit c49507b289
5 changed files with 40 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# Update module and target compiler options migration
# Update `module` and `target` compiler options migration
## What does this migration do?
@ -14,7 +14,7 @@ Used in `browser` builder options (`ng build` for applications) | `"module"` | `
Used in `ng-packgr` builder options (`ng build` for libraries) | `"module"` | `"esnext"` | `"es2020"`
Used in `karma` builder options (`ng test` for applications) | `"module"` | `"esnext"` | `"es2020"`
Used in `server` builder options (universal) | `"module"` | `"commonjs"` | _removed_
  | `"target"` | _any_ | `"es2016"`
Used in `server` builder options (universal) | `"target"` | _any_ | `"es2016"`
Used in `protractor` builder options (`ng e2e` for applications) | `"target"` | `"es5"` | `"es2018"`
## Why is this migration necessary?