diff --git a/src/commands/githubCommand.ts b/src/commands/githubCommand.ts index da95770..7cd5458 100644 --- a/src/commands/githubCommand.ts +++ b/src/commands/githubCommand.ts @@ -185,7 +185,7 @@ export class GithubCommand extends Command { } } -export class ReviewList extends Command { +export class ReviewListCommand extends Command { override data() { const aliases = ["reviewlist", "prlist"]; diff --git a/src/commands/index.ts b/src/commands/index.ts index 1bcc94f..d8422ca 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -19,7 +19,7 @@ */ export { EmojiCommand } from "./emojiCommand"; -export { GithubCommand } from "./githubCommand"; +export { GithubCommand, ReviewListCommand } from "./githubCommand"; export { PlanCommand } from "./planCommand"; export { QuickLinksCommand } from "./quickLinksCommand"; export { TestCommand } from "./testCommand";