aboutsummaryrefslogtreecommitdiff
path: root/json_module_graph/transitiveDeps.jq
blob: 4d5b812823fed05dc9ef85c5b14997a9fbd370a5 (plain)
1
2
3
4
5
6
7
# CMD: Returns the names of the transitive dependencies of the comma-separated module names, $arg

include "library";

(moduleGraphNoVariants | removeSelfEdges) as $m |
  ($arg | split(",")) |
  transitiveDeps($m)