Skip to content

Commit

Permalink
feat: correct workQueue def
Browse files Browse the repository at this point in the history
  • Loading branch information
megheaiulian committed Dec 22, 2023
1 parent b868a72 commit 8c3e71d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loaders/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class Loaders {
private readonly use: Map<string, Record<string, unknown>>;
private readonly test: (file: string) => boolean;
private readonly loaders = new Map<string, Loader>();
private workQueue: PQueue;
private workQueue?: PQueue;

constructor(options: LoadersOptions) {
this.use = new Map(options.use.reverse());
Expand Down

0 comments on commit 8c3e71d

Please sign in to comment.