build.json 756 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "ng-cli://commands/build.json",
  4. "description": "Compiles an Angular app into an output directory named dist/ at the given output path. Must be executed from within a workspace directory.",
  5. "$longDescription": "./build-long.md",
  6. "$aliases": [ "b" ],
  7. "$scope": "in",
  8. "$type": "architect",
  9. "$impl": "./build-impl#BuildCommand",
  10. "allOf": [
  11. { "$ref": "./definitions.json#/definitions/architect" },
  12. { "$ref": "./definitions.json#/definitions/base" },
  13. {
  14. "type": "object",
  15. "properties": {
  16. "buildEventLog": {
  17. "type": "string",
  18. "description": "**EXPERIMENTAL** Output file path for Build Event Protocol events"
  19. }
  20. }
  21. }
  22. ]
  23. }