From a52e7a7a716a7693329a8db0cd869cafeeea0c07 Mon Sep 17 00:00:00 2001 From: 0div Date: Tue, 26 Nov 2024 10:48:39 -0800 Subject: [PATCH] fix cli sdk autogen with sdk keyword --- packages/cli/src/utils/commands2md.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/utils/commands2md.ts b/packages/cli/src/utils/commands2md.ts index 60d78b496..966a8a001 100644 --- a/packages/cli/src/utils/commands2md.ts +++ b/packages/cli/src/utils/commands2md.ts @@ -10,7 +10,7 @@ import path from 'path' * @returns A string containing the entire markdown documentation for all commands. */ export function commands2md(commands: Command[]): void { - const outputDir = 'api_ref' + const outputDir = 'sdk_ref' if (!fs.existsSync(outputDir)) { fs.mkdirSync(outputDir, { recursive: true }) }