blob: ef40a25e668ad7f5b7c6c70ad0150b3627129174 [file] [log] [blame]
# CMD: Returns a summary of the module types present on the input
include "library";
def moduleTypeStats($arg):
group_by(.Type) |
map({
Type: .[0].Type,
Count: map(.Name) | unique | length,
VariantCount: length,
}) |
sort_by(.Count)
;
moduleTypeStats($arg)