From 5c0aad07804970970616cbbe6eb5e3f6b4ccb52f Mon Sep 17 00:00:00 2001 From: leibale Date: Thu, 30 Dec 2021 13:16:49 -0500 Subject: [PATCH] fix imports --- packages/bloom/lib/commands/cuckoo/index.ts | 2 +- packages/time-series/lib/commands/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bloom/lib/commands/cuckoo/index.ts b/packages/bloom/lib/commands/cuckoo/index.ts index 71137ceaaf..30fa960999 100644 --- a/packages/bloom/lib/commands/cuckoo/index.ts +++ b/packages/bloom/lib/commands/cuckoo/index.ts @@ -10,7 +10,7 @@ import * as INSERTNX from './INSERTNX'; import * as LOADCHUNK from './LOADCHUNK'; import * as RESERVE from './RESERVE'; import * as SCANDUMP from './SCANDUMP'; -import { pushVerdictArguments } from '@node-redis/client/lib/commands/generic-transformers'; +import { pushVerdictArguments } from '@node-redis/client/dist/lib/commands/generic-transformers'; import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands'; export default { diff --git a/packages/time-series/lib/commands/index.ts b/packages/time-series/lib/commands/index.ts index b8b43eb943..ad9d5962c9 100644 --- a/packages/time-series/lib/commands/index.ts +++ b/packages/time-series/lib/commands/index.ts @@ -20,7 +20,7 @@ import * as MRANGE_WITHLABELS from './MRANGE_WITHLABELS'; import * as MREVRANGE from './MREVRANGE'; import * as MREVRANGE_WITHLABELS from './MREVRANGE_WITHLABELS'; import { RedisCommandArguments } from '@node-redis/client/dist/lib/commands'; -import { pushVerdictArguments } from '@node-redis/client/lib/commands/generic-transformers'; +import { pushVerdictArguments } from '@node-redis/client/dist/lib/commands/generic-transformers'; export default { ADD,