Update learn
Seto Elkahfi committed
Jun 20, 2024 at 23:37 UTC
e301a77674730a2e3b4ba969fefaf0ac1c58af46
1 file changed
+6
-1
docs/learn.md
+6
-1
@@ -1,6 +1,11 @@
1
-
1
## Query all targets
2
3
```bash
4
bazel query //...
5
```
6
+
7
+## Get dependency tree for a bazel target
8
+
9
+```bash
10
+bazel query 'deps(//src-tauri:tauri)' --nohost_deps --noimplicit_deps
11
+```