From 4e38cabc4971f75b974a00ae5a6728378f6aa74f Mon Sep 17 00:00:00 2001 From: Michael Prentice Date: Sat, 26 Oct 2019 23:59:13 -0700 Subject: [PATCH] docs: update broken link in Bazel docs (#33428) add link to debugging docs - source of the instructions above the link PR Close #33428 --- docs/BAZEL.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/BAZEL.md b/docs/BAZEL.md index a7b434acfc..e1d7a9ef6b 100644 --- a/docs/BAZEL.md +++ b/docs/BAZEL.md @@ -79,7 +79,11 @@ See also: [`//.bazelrc`](https://github.com/angular/angular/blob/master/.bazelrc - Click on `Open dedicated DevTools for Node` to launch a debugger. - Run test: `yarn bazel test packages/core/test:test --config=debug` -The process should automatically connect to the debugger. For additional info and testing options, see the [nodejs_test documentation](https://bazelbuild.github.io/rules_nodejs/node/node.html#nodejs_test). +The process should automatically connect to the debugger. +For more, see the [rules_nodejs Debugging documentation](https://bazelbuild.github.io/rules_nodejs/index.html#debugging). + +For additional info and testing options, see the +[nodejs_test documentation](https://bazelbuild.github.io/rules_nodejs/Built-ins.html#nodejs_test). - Click on "Resume script execution" to let the code run until the first `debugger` statement or a previously set breakpoint. - If you're debugging an ivy test and you want to inspect the generated template instructions, find the template of your component in the call stack and click on `(source mapped from [CompName].js)` at the bottom of the code. You can also disable sourcemaps in the options or go to sources and look into ng:// namespace to see all the generated code.