Skip to content

Commit 3c6587b

Browse files
committed
chore(deps): bump libcord
1 parent c89b816 commit 3c6587b

File tree

6 files changed

+123
-22
lines changed

6 files changed

+123
-22
lines changed

package-lock.json

Lines changed: 118 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
"dependencies": {
3535
"dotenv": "^16.0.1",
3636
"glob": "^7.1.7",
37-
"libcord": "^0.0.8"
37+
"libcord": "^0.1.0"
3838
}
3939
}

src/Interactions/info/ping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Interaction from "../../struct/interaction";
22
import CustomClient from "../../struct/CustomClient";
3-
import { ApplicationCommandType, CommandInteraction } from "libcord/lib/src";
3+
import { ApplicationCommandType, CommandInteraction } from "libcord";
44

55
export default class PingCommand extends Interaction {
66
constructor(client: CustomClient) {

src/handlers/InteractionHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import glob from "glob";
22
import path from "node:path";
33
import Interaction from "../struct/interaction";
44
import CustomClient from "../struct/CustomClient";
5-
import { ApplicationCommandBase } from "libcord/lib/src";
5+
import { ApplicationCommandBase } from "libcord";
66

77
export default class InteractionHandler {
88
public client: CustomClient;

src/struct/CustomClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Client, ClientOptions, Collection } from "libcord/lib/src";
1+
import { Client, ClientOptions, Collection } from "libcord";
22
import Interaction from "./interaction";
33

44
export default class CustomClient extends Client {

src/struct/interaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApplicationCommandType, ApplicationCommandOption } from "libcord/lib/src";
1+
import { ApplicationCommandType, ApplicationCommandOption } from "libcord";
22
import CustomClient from "./CustomClient";
33

44
export interface InteractionOptions {

0 commit comments

Comments
 (0)