migrations.json 862 B

12345678910111213141516171819202122232425
  1. {
  2. "schematics": {
  3. "inject-flags": {
  4. "version": "20.0.0",
  5. "description": "Replaces usages of the deprecated InjectFlags enum",
  6. "factory": "./bundles/inject-flags.cjs#migrate"
  7. },
  8. "test-bed-get": {
  9. "version": "20.0.0",
  10. "description": "Replaces usages of the deprecated TestBed.get method with TestBed.inject",
  11. "factory": "./bundles/test-bed-get.cjs#migrate"
  12. },
  13. "control-flow-migration": {
  14. "version": "20.0.0",
  15. "description": "Converts the entire application to block control flow syntax",
  16. "factory": "./bundles/control-flow-migration.cjs#migrate",
  17. "optional": true
  18. },
  19. "document-core": {
  20. "version": "20.0.0",
  21. "description": "Moves imports of `DOCUMENT` from `@angular/common` to `@angular/core`",
  22. "factory": "./bundles/document-core.cjs#migrate"
  23. }
  24. }
  25. }