Skip to content

Commit 24f9954

Browse files
committed
Use published redis package for client, keep monorepo for test utils
1 parent e31a8b9 commit 24f9954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
},
88
"dependencies": {
99
"@hono/zod-validator": "^0.7.2",
10-
"cluster-key-slot": "1.1.2",
1110
"hono": "^4.8.5",
11+
"redis": "^4.7.0",
1212
"redis-monorepo": "github:redis/node-redis",
1313
"zod": "^4.0.8"
1414
},

src/app.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, test, expect, beforeAll, afterAll } from 'bun:test';
22
import { createApp } from './app';
3-
import { createClient } from 'redis-monorepo/packages/client';
3+
import { createClient } from 'redis';
44
import type { Server } from 'bun';
55

66
import { getFreePortNumber, RedisProxy } from 'redis-monorepo/packages/test-utils/lib/redis-proxy.ts';

0 commit comments

Comments
 (0)