Skip to content

Commit 7b08a0c

Browse files
authored
Merge pull request #81 from CvX/sort
Sort issues by package name
2 parents e0e7c65 + d9303ad commit 7b08a0c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

index.js

+5
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ function findIssues (configuration, dependencies) {
107107
results.push(result)
108108
}
109109
})
110+
111+
results.sort(function (a, b) {
112+
return a.name.localeCompare(b.name)
113+
})
114+
110115
return results
111116
}
112117

0 commit comments

Comments
 (0)