1# CMD: Returns the names of the transitive dependencies of the module(s) $arg, splits on "," 2 3include "library"; 4 5(moduleGraphNoVariants | removeSelfEdges) as $m | 6 ($arg | split(",")) | 7 transitiveDeps($m) 8