summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-17 19:39:07 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-17 19:39:07 -0800
commit675d4f9eb1f234860ebd04d9f6e118c287d98eda (patch)
tree180c04f272fa6289e051e98c3af793b7f72eafa7 /docs
parent9e156cd3bf53670b6283be5be3a0df6d332ae8ab (diff)
downloadmill-675d4f9eb1f234860ebd04d9f6e118c287d98eda.tar.gz
mill-675d4f9eb1f234860ebd04d9f6e118c287d98eda.tar.bz2
mill-675d4f9eb1f234860ebd04d9f6e118c287d98eda.zip
Avoid printing top-level tasks twice in `mill resolve __`
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/1 - Intro to Mill.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index b879dd05..bf9ed926 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -66,6 +66,11 @@ $ mill foo.jar # bundle the classfiles into a jar
$ mill foo.assembly # bundle classfiles and all dependencies into a jar
```
+You can run `mill resolve __` to see a full list of the different tasks that are
+available, `mill resolve foo._` to see the tasks within `foo`, `mill describe
+foo.compile` to see what an individual task depends on, or `mill show
+foo.scalaVersion` to inspect the output of any task.
+
The most common **tasks** that Mill can run are cached **targets**, such as
`compile`, and un-cached **commands** such as `foo.run`. Targets do not
re-evaluate unless one of their inputs changes, where-as commands re-run every