angular/packages/core/schematics/collection.json
Jessica Janiuk 50275e58b8 feat(core): Add schematic to migrate control flow syntax (#52035)
This adds the migration to run to migrate to the block control flow syntax. It includes ngIf, ngFor, and ngSwitch.

PR Close #52035
2023-10-10 11:33:00 -07:00

20 lines
No EOL
629 B
JSON

{
"schematics": {
"standalone-migration": {
"description": "Converts the entire application or a part of it to standalone",
"factory": "./ng-generate/standalone-migration/bundle",
"schema": "./ng-generate/standalone-migration/schema.json",
"aliases": [
"standalone"
]
},
"control-flow-migration": {
"description": "Converts the entire application to block control flow syntax",
"factory": "./ng-generate/control-flow-migration/bundle",
"schema": "./ng-generate/control-flow-migration/schema.json",
"aliases": [
"control-flow"
]
}
}
}