run.json 1001 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "ng-cli://commands/run.json",
  4. "description": "Runs an Architect target with an optional custom builder configuration defined in your project.",
  5. "$longDescription": "./run-long.md",
  6. "$aliases": [],
  7. "$scope": "in",
  8. "$type": "architect",
  9. "$impl": "./run-impl#RunCommand",
  10. "type": "object",
  11. "allOf": [
  12. {
  13. "properties": {
  14. "target": {
  15. "type": "string",
  16. "description": "The Architect target to run.",
  17. "$default": {
  18. "$source": "argv",
  19. "index": 0
  20. }
  21. },
  22. "configuration": {
  23. "description": "A named builder configuration, defined in the \"configurations\" section of angular.json.\nThe builder uses the named configuration to run the given target.",
  24. "type": "string",
  25. "aliases": [ "c" ]
  26. }
  27. },
  28. "required": [
  29. ]
  30. },
  31. {
  32. "$ref": "./definitions.json#/definitions/base"
  33. }
  34. ]
  35. }