refactor(core): run migration schematics for v8 beta and rc releases (#29735)

Currently the `static-query` and `template-var-assignment` schematic only runs
for `8.0.0` which does not include any betas or release candidates. We want to
run the schematic in the beta's and RC in order to get early feedback about the
schematics. Enabling it promptly with V8 stable release can result in accidental
breakages that we would like to fix/identify before.

PR Close #29735
This commit is contained in:
Paul Gschwendtner 2019-04-05 18:58:56 +02:00 committed by Igor Minar
parent 4e8c2c3422
commit 39bfd1a11f
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{
"schematics": {
"migration-v8-static-queries": {
"version": "8",
"version": "8-beta",
"description": "Migrates ViewChild and ContentChild to explicit query timing",
"factory": "./migrations/static-queries/index"
},
"migration-v8-template-local-variables": {
"version": "8",
"version": "8-beta",
"description": "Warns developers if values are assigned to template variables",
"factory": "./migrations/template-var-assignment/index"
}