feat: sort README patch table by amount of patches per package

This commit is contained in:
oSumAtrIX 2022-12-02 04:35:06 +01:00
parent af5eaf415f
commit 40cb14e183
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -24,7 +24,7 @@ fun generateText(bundle: Bundle) {
}
}
for (pkg in packages) {
for (pkg in packages.entries.sortedByDescending { it.value.size }) {
output.appendLine("### \uD83D\uDCE6 `${pkg.key}`")
output.appendLine("<details>\n")