@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 +2 -2
- package/changes.json +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +3 -3
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.
|
|
17
|
-
| Processed | 2026-04-
|
|
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
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.
|
|
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.
|
|
102
|
-
"processedAt": "2026-04-
|
|
101
|
+
"originalVersion": "9.1.2",
|
|
102
|
+
"processedAt": "2026-04-07T12:27:26.328Z",
|
|
103
103
|
"smokeTest": "passed"
|
|
104
104
|
}
|
|
105
105
|
}
|