chore: bump all dependencies (#5891)

This commit is contained in:
LongYinan
2024-02-23 09:37:13 +00:00
parent db1d0dcf52
commit ae41c6c544
42 changed files with 3232 additions and 3311 deletions
@@ -81,8 +81,8 @@ export class PriorityAsyncQueue<
override next(abort?: AbortSignal | undefined): Promise<T> {
return super.next(abort, arr => {
if (this.priorityTarget.priorityRule !== null) {
const index = arr.findIndex(
update => this.priorityTarget.priorityRule?.(update.id)
const index = arr.findIndex(update =>
this.priorityTarget.priorityRule?.(update.id)
);
if (index !== -1) {
return arr.splice(index, 1)[0];