mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-25 08:41:39 +08:00
This commit updates the BUILD files to specify fine-grained node_module deps by replacing "@typings" comments with actual @npm node module. Moved tools/bazel.rc -> .bazelrc Removed "jasmine" typings from base tsconfig.json Added @bazel/karma to devDependencies, needed for `ts_web_test`
build_event_protocol
This protocol is used to make streaming build results available for machines to read and process.
See https://docs.bazel.build/versions/master/build-event-protocol.html
This directory contains an example program that parses a streaming JSON file containing build events. It's useful for manually testing a program that emits the build event protocol.
Try it
First build the tool:
$ bazel build //tools/build_event_protocol:parse
Then produce a build event json file:
$ bazel test //... --build_event_json_file=bep.json
as soon as that process has started, you should be able to run in another window
$ bazel-bin/tools/build_event_protocol/parse bep.json