Skip to content

Commit 0200966

Browse files
committed
fixup!
1 parent 2ffd777 commit 0200966

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/generators/ast-js/index.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export default {
4141
for (const path of filePaths) {
4242
const vfile = await read(path, 'utf-8');
4343

44-
results.push(parseJsSource(vfile));
44+
const parsedJS = await parseJsSource(vfile);
45+
46+
results.push(parsedJS);
4547
}
4648

4749
return results;

0 commit comments

Comments
 (0)