diff --git a/packages/repo-tools/src/commands/api-reports/cli-reports/runCliExtraction.ts b/packages/repo-tools/src/commands/api-reports/cli-reports/runCliExtraction.ts index 23cbdbdc68..156e808ef0 100644 --- a/packages/repo-tools/src/commands/api-reports/cli-reports/runCliExtraction.ts +++ b/packages/repo-tools/src/commands/api-reports/cli-reports/runCliExtraction.ts @@ -94,7 +94,7 @@ function parseHelpPage(helpPageContent: string) { async function exploreCliHelpPages( run: (...args: string[]) => Promise, - limit: pLimit.Limit, + limit: ReturnType, ): Promise { const helpPages = new Array(); @@ -198,7 +198,7 @@ export async function runCliExtraction({ logApiReportInstructions(); } - throw new Error(`CLI report changed for ${packageDir}, `); + throw new Error(`CLI report changed for ${packageDir}`); } } }