misc-template.js 881 B

12345678910111213141516171819202122232425
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google LLC All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.dev/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. exports.MiscTemplateMigration = void 0;
  11. const migration_1 = require("../../update-tool/migration");
  12. /**
  13. * Migration that walks through every template and reports if there are
  14. * instances of outdated Angular CDK API that can't be migrated automatically.
  15. */
  16. class MiscTemplateMigration extends migration_1.Migration {
  17. constructor() {
  18. super(...arguments);
  19. // There are currently no migrations for V19 deprecations.
  20. this.enabled = false;
  21. }
  22. visitTemplate(template) { }
  23. }
  24. exports.MiscTemplateMigration = MiscTemplateMigration;
  25. //# sourceMappingURL=misc-template.js.map