angular-cli/tools/build_event_protocol
Keen Yee Liau a3b05a0283 build: Use fine-grained node_module deps
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`
2018-10-31 20:56:27 -07:00
..
2018-10-31 20:56:27 -07:00

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