run-impl.js 654 B

123456789101112131415161718192021
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google Inc. 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.io/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. const architect_command_1 = require("../models/architect-command");
  11. class RunCommand extends architect_command_1.ArchitectCommand {
  12. async run(options) {
  13. if (options.target) {
  14. return this.runArchitectTarget(options);
  15. }
  16. else {
  17. throw new Error('Invalid architect target.');
  18. }
  19. }
  20. }
  21. exports.RunCommand = RunCommand;