@shrub/queue-bullmq 0.5.78 → 0.5.80

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.
Files changed (2) hide show
  1. package/dist/module.d.ts +1 -1
  2. package/package.json +5 -5
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 LoggingModule | typeof QueueModule)[];
23
+ readonly dependencies: (typeof QueueModule | typeof LoggingModule)[];
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.78",
4
+ "version": "0.5.80",
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.78",
29
- "@shrub/logging": "0.5.78",
30
- "@shrub/queue": "0.5.78",
28
+ "@shrub/core": "0.5.80",
29
+ "@shrub/logging": "0.5.80",
30
+ "@shrub/queue": "0.5.80",
31
31
  "@sprig/event-emitter": "0.2.5",
32
32
  "bullmq": "3.15.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@sprig/unique-id": "0.2.5"
36
36
  },
37
- "gitHead": "51410600e8cf1b83f1ebf4b925739660a2d77bf8"
37
+ "gitHead": "fae9606a4f94565c884eae86a2083aa6276ddab0"
38
38
  }