We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15464b commit e219fa1Copy full SHA for e219fa1
.gitignore
@@ -5,5 +5,6 @@ dist
5
.history
6
dist/
7
.vscode
8
+.npmrc
9
Resources
10
temp
index.js
@@ -21,6 +21,11 @@ function listFolder(folder) {
21
})
22
// Filter out dot files
23
files = files.filter(f => f.indexOf('.') !== 0)
24
+
25
+ // Sort alphabetically in case-insensitive fashion
26
+ files.sort(function (a, b) {
27
+ return a.localeCompare(b);
28
+ });
29
return files
30
}
31
0 commit comments