Skip to content

Commit 76d99f8

Browse files
authored
fix: Properly import glob (#1818)
Fixes a regression introduced in c2572c1.
1 parent 1a5051b commit 76d99f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapters/globAsync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import glob from "glob";
1+
import { glob } from "glob";
22

33
export const globAsync = async (pattern: string) => {
44
return new Promise<Error | string[]>((resolve) => {

0 commit comments

Comments
 (0)