@shrub/queue-bullmq 0.5.83 → 0.5.85
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/dist/module.d.ts +1 -1
- package/package.json +7 -7
package/dist/module.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const IQueueBullMQConfiguration: import("@shrub/core").IModuleCon
|
|
|
20
20
|
export declare class QueueBullMQModule implements IModule {
|
|
21
21
|
private readonly adapters;
|
|
22
22
|
readonly name = "queue-bullmq";
|
|
23
|
-
readonly dependencies: (typeof
|
|
23
|
+
readonly dependencies: (typeof LoggingModule | typeof QueueModule)[];
|
|
24
24
|
initialize(init: IModuleInitializer): void;
|
|
25
25
|
configure({ config }: IModuleConfigurator): void;
|
|
26
26
|
dispose(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shrub/queue-bullmq",
|
|
3
3
|
"description": "Provides a job/worker queue using BullMQ.",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.85",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"test": "jest"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@shrub/core": "0.5.
|
|
29
|
-
"@shrub/logging": "0.5.
|
|
30
|
-
"@shrub/queue": "0.5.
|
|
31
|
-
"@sprig/event-emitter": "0.2.
|
|
28
|
+
"@shrub/core": "0.5.85",
|
|
29
|
+
"@shrub/logging": "0.5.85",
|
|
30
|
+
"@shrub/queue": "0.5.85",
|
|
31
|
+
"@sprig/event-emitter": "0.2.11",
|
|
32
32
|
"bullmq": "3.15.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@sprig/unique-id": "0.2.
|
|
35
|
+
"@sprig/unique-id": "0.2.11"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a382836ab3f36d7bc0750dd35df4e48382c4dad4"
|
|
38
38
|
}
|