Try and fix weird build error

This commit is contained in:
Nick Cipollo
2023-04-01 17:33:40 -04:00
parent a48ee3f85e
commit 5a8bbe8ea7
7 changed files with 7054 additions and 3644 deletions

View File

@@ -1,4 +1,5 @@
import { GlobSync } from "glob";
import {globSync} from "glob";
export interface Globber {
glob(pattern: string): string[]
@@ -6,6 +7,6 @@ export interface Globber {
export class FileGlobber implements Globber {
glob(pattern: string): string[] {
return new GlobSync(pattern, { mark: true }).found
return globSync(pattern, { mark: true })
}
}