-
Is it possible to get a list of all the modules defined in a Did some searching in the docos and source but may have missed it. TIA |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You get get the direct module children with We use this in our own build too, e.g. to collect all example build and render them in the documentation. Lines 999 to 1000 in c75e29c |
Beta Was this translation helpful? Give feedback.
You get get the direct module children with
millModuleDirectChildren
. To get a recursive list, you can usemillInternal.modules
.We use this in our own build too, e.g. to collect all example build and render them in the documentation.
mill/build.sc
Lines 999 to 1000 in c75e29c