From 54100a7ba641210d820aa37d172f331d0d445b2c Mon Sep 17 00:00:00 2001 From: versecafe <147033096+versecafe@users.noreply.github.com> Date: Wed, 10 Jul 2024 12:31:33 -0400 Subject: [PATCH] Export ReviewList command and fix its naming scheme --- src/commands/githubCommand.ts | 2 +- src/commands/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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";