angular/packages/core/schematics/migrations.json
Alan Agius bc61cc2449 refactor(migrations): remove old migrations (#44857)
When using `ng update` users cannot update multiple major versions at the same time. Therefore migrations that are not targeting version 14 cannot be run and therefore we are removing them.

PR Close #44857
2022-02-01 03:52:26 +00:00

14 lines
450 B
JSON

{
"schematics": {
"migration-entry-components": {
"version": "14.0.0-beta",
"description": "As of Angular version 13, `entryComponents` are no longer necessary.",
"factory": "./migrations/entry-components/index"
},
"migration-v14-typed-forms": {
"version": "9999.0.0",
"description": "Experimental migration that adds <any>s for Typed Forms.",
"factory": "./migrations/typed-forms/index"
}
}
}