We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56144c commit 0c29cfcCopy full SHA for 0c29cfc
src/index.ts
@@ -24,15 +24,13 @@ async function getAllMarkdownFiles(inDir: string) {
24
const allMarkdownFiles: string[] = [];
25
26
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
- );
+ for (const child of children) {
+ const childPath = path.resolve(inDir, child);
+ const stats = await fs.stat(childPath);
+ if (path.extname(childPath) === '.md' && stats.isFile()) {
+ allMarkdownFiles.push(childPath);
+ }
36
37
return allMarkdownFiles;
38
}
0 commit comments