Skip to content

Commit c6e8099

Browse files
authored
fix: followup globSync fix (#230)
1 parent 99d606f commit c6e8099

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/loaders/javascript.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import { readFile } from 'node:fs/promises';
44
import { extname } from 'node:path';
5+
import { globSync } from 'node:fs';
56

6-
import { globSync } from 'glob';
77
import { VFile } from 'vfile';
88

99
/**

src/loaders/markdown.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
import { readFile } from 'node:fs/promises';
44
import { extname } from 'node:path';
5-
import { globSync } from 'fs';
5+
import { globSync } from 'node:fs';
6+
67
import { VFile } from 'vfile';
78

89
/**

0 commit comments

Comments
 (0)