@codemation/eventbus-redis 0.0.5 → 0.0.11
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 +1 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -81,4 +81,4 @@ Wire this package when you run Codemation in multi-process or scaled setups and
|
|
|
81
81
|
import { RedisRunEventBus } from "@codemation/eventbus-redis";
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
-
Register the implementation through your host
|
|
84
|
+
Register the implementation through your host container wiring where `RunEventBus`-style services are bound.
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemation/eventbus-redis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"author": "Made Relevant B.V.",
|
|
8
8
|
"homepage": "https://www.maderelevant.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/MadeRelevant/codemation",
|
|
12
|
+
"directory": "packages/eventbus-redis"
|
|
13
|
+
},
|
|
9
14
|
"type": "module",
|
|
10
15
|
"main": "./dist/index.cjs",
|
|
11
16
|
"module": "./dist/index.js",
|
|
@@ -23,7 +28,7 @@
|
|
|
23
28
|
},
|
|
24
29
|
"dependencies": {
|
|
25
30
|
"ioredis": "^5.7.0",
|
|
26
|
-
"@codemation/core": "0.0.
|
|
31
|
+
"@codemation/core": "0.0.11"
|
|
27
32
|
},
|
|
28
33
|
"devDependencies": {
|
|
29
34
|
"@types/node": "^25.3.5",
|