UNPKG

654 BJavaScriptView Raw
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 */
9Object.defineProperty(exports, "__esModule", { value: true });
10const architect_command_1 = require("../models/architect-command");
11class 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}
21exports.RunCommand = RunCommand;