From bbf655f93d1ff2b9a164bff665b9d1cb2e741c91 Mon Sep 17 00:00:00 2001 From: Masaharu Tashiro Date: Fri, 25 Oct 2024 03:06:48 +0900 Subject: [PATCH] hide plugin command --- src/cli/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/main.ts b/src/cli/main.ts index 1e2db570f2..6f51bf1c13 100644 --- a/src/cli/main.ts +++ b/src/cli/main.ts @@ -7,7 +7,8 @@ import { logHandler, logOptions } from "./logOption"; // eslint-disable-next-line no-unused-expressions yargs .command(recordCommand) - .command(pluginCommand) + // NOTE: Hide the plugin command because it's in very early development. + .command({ ...pluginCommand, describe: false }) .options(logOptions) .middleware(logHandler) .demandCommand()