deploy.json 725 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "ng-cli://commands/deploy.json",
  4. "description": "Invokes the deploy builder for a specified project or for the default project in the workspace.",
  5. "$longDescription": "./deploy-long.md",
  6. "$aliases": [ "d" ],
  7. "$scope": "in",
  8. "$type": "architect",
  9. "$impl": "./deploy-impl#DeployCommand",
  10. "allOf": [
  11. {
  12. "properties": {
  13. "project": {
  14. "type": "string",
  15. "description": "The name of the project to deploy.",
  16. "$default": {
  17. "$source": "argv",
  18. "index": 0
  19. }
  20. }
  21. },
  22. "required": [
  23. ]
  24. },
  25. {
  26. "$ref": "./definitions.json#/definitions/base"
  27. }
  28. ]
  29. }