Skip to content

Commit 5c3ac8d

Browse files
committed
Use @iovalkey/commands
Signed-off-by: Matteo Collina <[email protected]>
1 parent 0ef0632 commit 5c3ac8d

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

bin/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const HEADER = `/**
1414
`;
1515

1616
const ignoredCommands = ["monitor", "multi"];
17-
const commands = require("@ioredis/commands")
17+
const commands = require("@iovalkey/commands")
1818
.list.filter((name) => !ignoredCommands.includes(name))
1919
.sort();
2020

lib/Redis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { exists, hasFlag } from "@ioredis/commands";
1+
import { exists, hasFlag } from "@iovalkey/commands";
22
import { EventEmitter } from "events";
33
import asCallback from "standard-as-callback";
44
import Cluster from "./cluster";

lib/cluster/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { exists, hasFlag } from "@ioredis/commands";
1+
import { exists, hasFlag } from "@iovalkey/commands";
22
import { EventEmitter } from "events";
33
import { AbortError, RedisError } from "redis-errors";
44
import asCallback from "standard-as-callback";

lib/utils/Commander.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { list } from "@ioredis/commands";
1+
import { list } from "@iovalkey/commands";
22
import {
33
executeWithAutoPipelining,
44
shouldUseAutoPipelining,

package-lock.json

+18-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"author": "Matteo Collina <[email protected]>",
3939
"license": "MIT",
4040
"dependencies": {
41-
"@ioredis/commands": "^1.1.1",
41+
"@iovalkey/commands": "^0.1.0",
4242
"cluster-key-slot": "^1.1.0",
4343
"debug": "^4.3.4",
4444
"denque": "^2.1.0",

0 commit comments

Comments
 (0)