summaryrefslogtreecommitdiff
path: root/docs/pages/1 - Intro to Mill.md
diff options
context:
space:
mode:
authorJoseph K. Strauss <joseph.k.strauss@gmail.com>2018-08-10 01:06:20 -0400
committerLi Haoyi <haoyi.sg@gmail.com>2018-08-10 13:06:20 +0800
commit21594a8fcc0937a966a0a6857d2fe3f764e69ce9 (patch)
treed732049cde61320c188da63f74052913888404a7 /docs/pages/1 - Intro to Mill.md
parent87dfb308db0a83a3443fe71127716411474b0b69 (diff)
downloadmill-21594a8fcc0937a966a0a6857d2fe3f764e69ce9.tar.gz
mill-21594a8fcc0937a966a0a6857d2fe3f764e69ce9.tar.bz2
mill-21594a8fcc0937a966a0a6857d2fe3f764e69ce9.zip
Make visualizePlan work with external modules (#406)
Diffstat (limited to 'docs/pages/1 - Intro to Mill.md')
-rw-r--r--docs/pages/1 - Intro to Mill.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 49ac64da..b6606211 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -561,7 +561,7 @@ compilation output:
### visualizePlan
```bash
-$ mill show visualizePlan moduledefs.allSourceFiles
+$ mill show visualizePlan core.launcher
[
".../out/visualizePlan/dest/out.txt",
".../out/visualizePlan/dest/out.dot",
@@ -571,17 +571,15 @@ $ mill show visualizePlan moduledefs.allSourceFiles
]
```
-`mill show visualizePlan` is similar except that it shows a graph of the entire
-build plan, including dependencies not directly resolved by the query. Targets
-directly resolved are shown with a solid border, and dependencies are shown with
-a dotted border.
+`mill show visualizePlan` is similar to `mill show visualize` except that it
+shows a graph of the entire build plan, including tasks not directly resolved
+by the query. Tasks directly resolved are shown with a solid border,
+and dependencies are shown with a dotted border.
The above command generates the following diagram:
![VisualizePlan.svg](VisualizePlan.svg)
-Currently, visualizePlan does not support graphs that contain external modules.
-
### clean
```bash