| Lukacs T. Berki | f8f3ba8 | 2021-06-09 12:45:21 +0200 | [diff] [blame^] | 1 | # CMD: Returns the modules in the transitive closure of module $arg |
| 2 | |||||
| Lukacs T. Berki | 880e6ec | 2021-04-06 11:40:42 +0200 | [diff] [blame] | 3 | include "library"; |
| 4 | |||||
| 5 | [((moduleGraphNoVariants | removeSelfEdges) as $m | | ||||
| 6 | [$arg] | | ||||
| 7 | transitiveDeps($m)) as $names | | ||||
| 8 | .[] | | ||||
| 9 | select (IN(.Name; $names | .[]))] | | ||||
| 10 | sort_by(.Name) | ||||
| 11 | |||||
| 12 | |||||