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 }); }