UNPKG

644 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 E2eCommand extends architect_command_1.ArchitectCommand {
12 constructor() {
13 super(...arguments);
14 this.target = 'e2e';
15 this.multiTarget = true;
16 }
17 async run(options) {
18 return this.runArchitectTarget(options);
19 }
20}
21exports.E2eCommand = E2eCommand;