We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f61c70 commit e7230c3Copy full SHA for e7230c3
src/lib.mjs
@@ -21,6 +21,6 @@ if (err) {
21
console.log('Failed to open directory "blocks", does it exist?');
22
std.exit(1);
23
}
24
-files.filter(f => !f.startsWith('.')).forEach(script => {
+files.filter(f => !f.startsWith('.')).sort().forEach(script => {
25
std.loadScript('./blocks/' + script);
26
});
0 commit comments