Skip to content

Commit 61beafa

Browse files
committed
fix: add missing await
1 parent d33209b commit 61beafa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generators/ast-js/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
const { loadFiles } = createJsLoader();
3131

3232
// Load all of the Javascript sources into memory
33-
const sourceFiles = loadFiles(options.input ?? []);
33+
const sourceFiles = await loadFiles(options.input ?? []);
3434

3535
const { parseJsSources } = createJsParser();
3636

0 commit comments

Comments
 (0)