From 7e7ea1477a547c2a57c3a5c876f7b49604a0716d Mon Sep 17 00:00:00 2001 From: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> Date: Wed, 7 May 2025 14:38:48 -0400 Subject: [PATCH] Apply suggestions from code review Signed-off-by: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> --- packages/repo-tools/src/commands/package-docs/Cache.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/repo-tools/src/commands/package-docs/Cache.ts b/packages/repo-tools/src/commands/package-docs/Cache.ts index 710997a0a9..4cb0b87288 100644 --- a/packages/repo-tools/src/commands/package-docs/Cache.ts +++ b/packages/repo-tools/src/commands/package-docs/Cache.ts @@ -46,7 +46,6 @@ export class PackageDocsCache { }); const map = new Map(); for (const file of cacheFiles) { - console.log(file); const pkg = dirname(file); const cache = await readFile(workerPath.join(cacheDir, file), 'utf-8'); const cacheJson = JSON.parse(cache); @@ -113,7 +112,6 @@ export class PackageDocsCache { const targetDir = cliPaths.resolveTargetRoot(restoreTo); await mkdirp(targetDir); - console.log(contentsDir, targetDir); await cp(contentsDir, targetDir, { recursive: true }); }