release: WRNexusJS 0.7.0

This commit is contained in:
2026-08-01 10:04:42 +05:30
parent c54144f2e4
commit 87507edf59
207 changed files with 12607 additions and 679 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@wrnexus/pubsub",
"version": "0.6.0",
"version": "0.7.0",
"private": true,
"type": "module",
"main": "src/index.ts",
+1 -1
View File
@@ -1,7 +1,7 @@
import { afterEach, expect, test } from "bun:test";
import { redisDriver } from "../src/redis.ts";
const bun = globalThis.Bun as typeof Bun & { connect: (options: unknown) => Promise<unknown> };
const bun = Bun as typeof Bun & { connect: (options: unknown) => Promise<unknown> };
const originalConnect = bun.connect;
afterEach(() => {
bun.connect = originalConnect;