UNPKG

1.03 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * @license
5 * Copyright Google Inc. All Rights Reserved.
6 *
7 * Use of this source code is governed by an MIT-style license that can be
8 * found in the LICENSE file at https://angular.io/license
9 */
10const core_1 = require("@angular-devkit/core");
11const architect_command_1 = require("../models/architect-command");
12class ServeCommand extends architect_command_1.ArchitectCommand {
13 constructor() {
14 super(...arguments);
15 this.target = 'serve';
16 }
17 validate(_options) {
18 return true;
19 }
20 async run(options) {
21 return this.runArchitectTarget(options);
22 }
23 async reportAnalytics(paths, options, dimensions = [], metrics = []) {
24 if (options.buildEventLog !== undefined) {
25 dimensions[core_1.analytics.NgCliAnalyticsDimensions.NgBuildBuildEventLog] = true;
26 }
27 return super.reportAnalytics(paths, options, dimensions, metrics);
28 }
29}
30exports.ServeCommand = ServeCommand;