Skip to content

Commit 8c3e71d

Browse files
committed
feat: correct workQueue def
1 parent b868a72 commit 8c3e71d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loaders/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default class Loaders {
3333
private readonly use: Map<string, Record<string, unknown>>;
3434
private readonly test: (file: string) => boolean;
3535
private readonly loaders = new Map<string, Loader>();
36-
private workQueue: PQueue;
36+
private workQueue?: PQueue;
3737

3838
constructor(options: LoadersOptions) {
3939
this.use = new Map(options.use.reverse());

0 commit comments

Comments
 (0)