Skip to content

Commit

Permalink
Merge pull request #81 from CvX/sort
Browse files Browse the repository at this point in the history
Sort issues by package name
  • Loading branch information
kemitchell authored Sep 3, 2024
2 parents e0e7c65 + d9303ad commit 7b08a0c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ function findIssues (configuration, dependencies) {
results.push(result)
}
})

results.sort(function (a, b) {
return a.name.localeCompare(b.name)
})

return results
}

Expand Down

0 comments on commit 7b08a0c

Please sign in to comment.