paths.js 690 B

12345678910111213141516
  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.MIGRATION_PATH = exports.COLLECTION_PATH = void 0;
  11. const path_1 = require("path");
  12. /** Path to the schematic collection for non-migration schematics. */
  13. exports.COLLECTION_PATH = (0, path_1.join)(__dirname, 'collection.json');
  14. /** Path to the schematic collection that includes the migrations. */
  15. exports.MIGRATION_PATH = (0, path_1.join)(__dirname, 'migration.json');
  16. //# sourceMappingURL=paths.js.map