You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
fix cross packages imports
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, TuplesReply, ArrayReply, BlobStringReply, NumberReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, TuplesReply, ArrayReply, BlobStringReply, NumberReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
type ConfigItemReply = TuplesReply<[
|
||||
configKey: BlobStringReply,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, SimpleStringReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, SimpleStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
export default {
|
||||
NOT_KEYED_COMMAND: true,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
export default {
|
||||
IS_READ_ONLY: false,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
export default {
|
||||
IS_READ_ONLY: true,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
export default {
|
||||
NOT_KEYED_COMMAND: true,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
export default {
|
||||
IS_READ_ONLY: true,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, NumberReply, NullReply, TuplesReply, UnwrapReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, ArrayReply, BlobStringReply, NumberReply, NullReply, TuplesReply, UnwrapReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
type Headers = ArrayReply<BlobStringReply>;
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import { Command } from '@redis/client/lib/RESP/types';
|
||||
import { Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import QUERY, { parseQueryArguments } from './QUERY';
|
||||
|
||||
export default {
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisArgument, ArrayReply, TuplesReply, BlobStringReply, UnwrapReply, Command } from '@redis/client/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/lib/client/parser';
|
||||
import { RedisArgument, ArrayReply, TuplesReply, BlobStringReply, UnwrapReply, Command } from '@redis/client/dist/lib/RESP/types';
|
||||
import { CommandParser } from '@redis/client/dist/lib/client/parser';
|
||||
|
||||
type SlowLogRawReply = ArrayReply<TuplesReply<[
|
||||
timestamp: BlobStringReply,
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import type { RedisCommands } from '@redis/client/lib/RESP/types';
|
||||
import type { RedisCommands } from '@redis/client/dist/lib/RESP/types';
|
||||
import CONFIG_GET from './CONFIG_GET';
|
||||
import CONFIG_SET from './CONFIG_SET';;
|
||||
import DELETE from './DELETE';
|
||||
|
Reference in New Issue
Block a user