From 49f6d1d02e6da1a75ca768ebefdb3e2495ee057f Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Wed, 21 Mar 2018 08:38:24 -0700 Subject: [PATCH] build: rm --noimplicit_deps from bazel query (#22912) I added this option for demos, so that it would be easier to see a graphviz graph of the dependency structure without all the node_modules edges. However, `ibazel` picks up this option as well, and means it doesn't trigger on changes that only appear through an implicit dependency. PR Close #22912 --- tools/bazel.rc | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/bazel.rc b/tools/bazel.rc index 800920282e..5fdf4ba0d8 100644 --- a/tools/bazel.rc +++ b/tools/bazel.rc @@ -38,9 +38,6 @@ build --workspace_status_command=./tools/bazel_stamp_vars.sh # Prints eg. "ng_module rule //foo:bar" rather than just "//foo:bar" query --output=label_kind -# Don't print every dependency in :node_modules, for example -query --noimplicit_deps - # By default, failing tests don't print any output, it goes to the log file test --test_output=errors