From bcbffa59a8b150f48ff02cfc9216ab0549b457cb Mon Sep 17 00:00:00 2001 From: nickfrosty <75431177+nickfrosty@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:07:25 -0500 Subject: [PATCH] refactor: remove doctor command --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e583e5a..a61af5c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import { errorMessage } from "@/lib/logs"; import { cliProgramRoot } from "@/commands"; import { installCommand } from "@/commands/install"; -import { doctorCommand } from "@/commands/doctor"; +// import { doctorCommand } from "@/commands/doctor"; import { cloneCommand } from "@/commands/clone"; import { validatorCommand } from "@/commands/validator"; import { buildCommand } from "@/commands/build"; @@ -21,7 +21,7 @@ async function main() { program .addCommand(installCommand()) - .addCommand(doctorCommand()) + // .addCommand(doctorCommand()) .addCommand(validatorCommand()) .addCommand(cloneCommand()) .addCommand(buildCommand())