@depup/p-queue 9.1.1-depup.0 → 9.1.2-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -13,8 +13,8 @@ npm install @depup/p-queue
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [p-queue](https://www.npmjs.com/package/p-queue) @ 9.1.1 |
17
- | Processed | 2026-04-01 |
16
+ | Original | [p-queue](https://www.npmjs.com/package/p-queue) @ 9.1.2 |
17
+ | Processed | 2026-04-07 |
18
18
  | Smoke test | passed |
19
19
  | Deps updated | 2 |
20
20
 
package/changes.json CHANGED
@@ -9,6 +9,6 @@
9
9
  "to": "^7.0.1"
10
10
  }
11
11
  },
12
- "timestamp": "2026-04-01T20:19:30.465Z",
12
+ "timestamp": "2026-04-07T12:27:11.978Z",
13
13
  "totalUpdated": 2
14
14
  }
package/dist/index.d.ts CHANGED
@@ -237,6 +237,7 @@ export default class PQueue<QueueType extends Queue<RunFunction, EnqueueOptionsT
237
237
  }>;
238
238
  }
239
239
  export type { Queue } from './queue.js';
240
+ export { default as PriorityQueue } from './priority-queue.js';
240
241
  export { type QueueAddOptions, type Options } from './options.js';
241
242
  /**
242
243
  Error thrown when a task times out.
package/dist/index.js CHANGED
@@ -769,6 +769,7 @@ export default class PQueue extends EventEmitter {
769
769
  return [...this.#runningTasks.values()].map(task => ({ ...task }));
770
770
  }
771
771
  }
772
+ export { default as PriorityQueue } from './priority-queue.js';
772
773
  /**
773
774
  Error thrown when a task times out.
774
775
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@depup/p-queue",
3
- "version": "9.1.1-depup.0",
3
+ "version": "9.1.2-depup.0",
4
4
  "description": "Promise queue with concurrency control (with updated dependencies)",
5
5
  "license": "MIT",
6
6
  "repository": "sindresorhus/p-queue",
@@ -98,8 +98,8 @@
98
98
  },
99
99
  "depsUpdated": 2,
100
100
  "originalPackage": "p-queue",
101
- "originalVersion": "9.1.1",
102
- "processedAt": "2026-04-01T20:19:42.008Z",
101
+ "originalVersion": "9.1.2",
102
+ "processedAt": "2026-04-07T12:27:26.328Z",
103
103
  "smokeTest": "passed"
104
104
  }
105
105
  }