blob: 1a5de2103a2f7db32d3a5f2889d5f55042b5c01b [file] [log] [blame]
Lukacs T. Berkif8f3ba82021-06-09 12:45:21 +02001# CMD: Returns the modules in the transitive closure of module $arg
2
Lukacs T. Berki880e6ec2021-04-06 11:40:42 +02003include "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