index.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
  10. if (k2 === undefined) k2 = k;
  11. var desc = Object.getOwnPropertyDescriptor(m, k);
  12. if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
  13. desc = { enumerable: true, get: function() { return m[k]; } };
  14. }
  15. Object.defineProperty(o, k2, desc);
  16. }) : (function(o, m, k, k2) {
  17. if (k2 === undefined) k2 = k;
  18. o[k2] = m[k];
  19. }));
  20. var __exportStar = (this && this.__exportStar) || function(m, exports) {
  21. for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
  22. };
  23. Object.defineProperty(exports, "__esModule", { value: true });
  24. exports.parse5 = void 0;
  25. __exportStar(require("./utils"), exports);
  26. __exportStar(require("./ng-update/public-api"), exports);
  27. __exportStar(require("./update-tool/public-api"), exports);
  28. // Re-exported so that Angular Material schematic code can consume the same AST utils as the CDK.
  29. __exportStar(require("@schematics/angular/utility/ast-utils"), exports);
  30. __exportStar(require("@schematics/angular/utility/ng-ast-utils"), exports);
  31. // Re-export parse5 from the CDK. Material schematics code cannot simply import
  32. // "parse5" because it could result in a different version. As long as we import
  33. // it from within the CDK, it will always be the correct version that is specified
  34. // in the CDK "package.json" as optional dependency.
  35. const parse5 = require("parse5");
  36. exports.parse5 = parse5;
  37. //# sourceMappingURL=index.js.map