All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.commands.build.cli.js Maven / Gradle / Ivy

There is a newer version: 19.0.0
Show newest version
"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.dev/license
 */
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const architect_command_module_1 = require("../../command-builder/architect-command-module");
const command_config_1 = require("../command-config");
class BuildCommandModule extends architect_command_module_1.ArchitectCommandModule {
    multiTarget = false;
    command = 'build [project]';
    aliases = command_config_1.RootCommands['build'].aliases;
    describe = 'Compiles an Angular application or library into an output directory named dist/ at the given output path.';
    longDescriptionPath = (0, path_1.join)(__dirname, 'long-description.md');
}
exports.default = BuildCommandModule;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy