migration.json 735 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
  3. "schematics": {
  4. "migration-v6": {
  5. "version": "6",
  6. "description": "Updates Angular Material to v6",
  7. "factory": "./ng-update/index#updateToV6"
  8. },
  9. "migration-v7": {
  10. "version": "7",
  11. "description": "Updates Angular Material to v7",
  12. "factory": "./ng-update/index#updateToV7"
  13. },
  14. "migration-v8": {
  15. "version": "8-beta",
  16. "description": "Updates Angular Material to v8",
  17. "factory": "./ng-update/index#updateToV8"
  18. },
  19. "ng-post-update": {
  20. "description": "Prints out results after ng-update.",
  21. "factory": "./ng-update/index#postUpdate",
  22. "private": true
  23. }
  24. }
  25. }