Skip to content

Commit 0c29cfc

Browse files
nornagonMarshallOfSound
authored andcommitted
fix: nondeterminism in file reading order (#4)
1 parent e56144c commit 0c29cfc

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/index.ts

+7-9
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ async function getAllMarkdownFiles(inDir: string) {
2424
const allMarkdownFiles: string[] = [];
2525

2626
const children = await fs.readdir(inDir);
27-
await Promise.all(
28-
children.map(async child => {
29-
const childPath = path.resolve(inDir, child);
30-
const stats = await fs.stat(childPath);
31-
if (path.extname(childPath) === '.md' && stats.isFile()) {
32-
allMarkdownFiles.push(childPath);
33-
}
34-
}),
35-
);
27+
for (const child of children) {
28+
const childPath = path.resolve(inDir, child);
29+
const stats = await fs.stat(childPath);
30+
if (path.extname(childPath) === '.md' && stats.isFile()) {
31+
allMarkdownFiles.push(childPath);
32+
}
33+
}
3634

3735
return allMarkdownFiles;
3836
}

0 commit comments

Comments
 (0)