ng deploy
为指定的项目或默认项目,执行部署构建器。
Invokes the deploy builder for a specified project or for the default project in the workspace.
ng deploy <project> [options]
说明
该命令采用可选的项目名称,和 angular.json
工作区配置文件 projects
部分中所指定的一样。如果未提供项目名称,则为默认项目执行 deploy
构建器。
The command takes an optional project name, as specified in the projects
section of the angular.json
workspace configuration file. When a project name is not supplied, executes the deploy
builder for the default project.
要使用 ng deploy
命令,请使用 ng add
来添加一个实现部署目标平台的功能的包。添加软件包会自动更新你的工作区配置,并添加一个部署用的 CLI 构建器。例如:
To use the ng deploy
command, use ng add
to add a package that implements deployment capabilities to your favorite platform. Adding the package automatically updates your workspace configuration, adding a deployment CLI builder. For example:
"projects": {
"my-project": {
...
"architect": {
...
"deploy": {
"builder": "@angular/fire:deploy",
"options": {}
}
}
}
}
参数
参数 | 说明 | Value Type |
---|---|---|
<project> | 要部署的项目名。 The name of the project to deploy. | string |
选项
选项 | 说明 | Value Type | Default Value |
---|---|---|---|
--configuration | 构建器的一个或多个命名配置,是一个逗号分隔的列表,就像在 angular.json 的 "configurations" 部分指定的一样。 本构建器使用这些命名配置来运行给定的目标。 欲知详情,参见 https://angular.cn/guide/workspace-config#alternate-build-configurations。 One or more named builder configurations as a comma-separated list as specified in the "configurations" section of angular.json. The builder uses the named configurations to run the given target. For more information, see https://angular.io/guide/workspace-config#alternate-build-configurations. 别名: -c | string | |
--help | 在控制台显示关于本命令的帮助信息。 Shows a help message for this command in the console. | true|false|json|JSON | false |