Skip to content

Commit cea6c97

Browse files
committed
bring back project sorting
1 parent 91fbec0 commit cea6c97

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ config.projects = (config.projects || []).map(function(project) {
4949
return m.npm === project.maintainer
5050
})[0]
5151
return project
52+
}).sort(function(a, b) {
53+
return a.name > b.name ? 1 : -1
5254
})
5355

5456
//

0 commit comments

Comments
 (0)