| 12345678910111213141516171819202122232425262728293031 |
- {
- "$schema": "http://json-schema.org/schema",
- "$id": "ng-cli://commands/deploy.json",
- "description": "Invokes the deploy builder for a specified project or for the default project in the workspace.",
- "$longDescription": "./deploy-long.md",
- "$aliases": [ "d" ],
- "$scope": "in",
- "$type": "architect",
- "$impl": "./deploy-impl#DeployCommand",
- "allOf": [
- {
- "properties": {
- "project": {
- "type": "string",
- "description": "The name of the project to deploy.",
- "$default": {
- "$source": "argv",
- "index": 0
- }
- }
- },
- "required": [
- ]
- },
- {
- "$ref": "./definitions.json#/definitions/base"
- }
- ]
- }
|