@declaro/redis 2.0.0-beta.52 → 2.0.0-beta.54
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/bun/index.js +2 -4
- package/dist/bun/index.js.map +3 -3
- package/dist/node/index.cjs +2 -4
- package/dist/node/index.cjs.map +3 -3
- package/dist/node/index.js +2 -4
- package/dist/node/index.js.map +3 -3
- package/package.json +3 -3
package/dist/node/index.cjs
CHANGED
|
@@ -35261,9 +35261,7 @@ class Su {
|
|
|
35261
35261
|
async emitAsync(u) {
|
|
35262
35262
|
await this.getListeners(u.type).reduce(async (r, F) => {
|
|
35263
35263
|
return await r, await F(u);
|
|
35264
|
-
}, Promise.resolve())
|
|
35265
|
-
console.error("Error in event listener", r);
|
|
35266
|
-
});
|
|
35264
|
+
}, Promise.resolve());
|
|
35267
35265
|
}
|
|
35268
35266
|
async emitAll(u) {
|
|
35269
35267
|
await Promise.all(this.getListeners(u.type).map((r) => r(u)));
|
|
@@ -43283,5 +43281,5 @@ var mockRedisMiddleware = () => async (context) => {
|
|
|
43283
43281
|
context.provide(REDIS_OPTIONS_KEY, undefined);
|
|
43284
43282
|
};
|
|
43285
43283
|
|
|
43286
|
-
//# debugId=
|
|
43284
|
+
//# debugId=0D124C6BD4E5031A64756E2164756E21
|
|
43287
43285
|
//# sourceMappingURL=index.cjs.map
|