UNPKG

@objectivity/angular-schematic-utils

Version:
47 lines 2.31 kB
"use strict"; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ Object.defineProperty(exports, "__esModule", { value: true }); exports.getProjectTargetOptions = exports.getProjectTargetConfigurations = void 0; const schematics_1 = require("@angular-devkit/schematics"); /** Resolves the architect configurations for the build target of the given project. */ function getProjectTargetConfigurations(project, buildTarget) { if (project.targets && project.targets[buildTarget] && project.targets[buildTarget].configurations) { return project.targets[buildTarget].configurations; } // TODO(devversion): consider removing this architect check if the CLI completely switched // over to `targets`, and the `architect` support has been removed. // See: https://github.com/angular/angular-cli/commit/307160806cb48c95ecb8982854f452303801ac9f if (project.architect && project.architect[buildTarget] && project.architect[buildTarget].configurations) { return project.architect[buildTarget].configurations; } throw new schematics_1.SchematicsException(`Cannot determine project target configuration for: ${buildTarget}.`); } exports.getProjectTargetConfigurations = getProjectTargetConfigurations; function getProjectTargetOptions(project, buildTarget) { if (project.targets && project.targets[buildTarget] && project.targets[buildTarget].options) { return project.targets[buildTarget].options; } // TODO(devversion): consider removing this architect check if the CLI completely switched // over to `targets`, and the `architect` support has been removed. // See: https://github.com/angular/angular-cli/commit/307160806cb48c95ecb8982854f452303801ac9f if (project.architect && project.architect[buildTarget] && project.architect[buildTarget].options) { return project.architect[buildTarget].options; } throw new schematics_1.SchematicsException(`Cannot determine project target options for: ${buildTarget}.`); } exports.getProjectTargetOptions = getProjectTargetOptions; //# sourceMappingURL=project-targets.js.map