diff --git a/packages/cache/src/ensureCacheDirExists.ts b/packages/cache/src/ensureCacheDirExists.ts index 81c57bf29..00b5caf82 100644 --- a/packages/cache/src/ensureCacheDirExists.ts +++ b/packages/cache/src/ensureCacheDirExists.ts @@ -1,11 +1,9 @@ import path from 'node:path' import fs from 'fs-extra' import { CACHE_DIR_NAME } from './constants' -// import appRoot from 'app-root-path' export function ensureCacheDirExists() { const cacheDirPath = path.join(process.cwd(), CACHE_DIR_NAME) - console.log(cacheDirPath) fs.ensureDirSync(cacheDirPath) return cacheDirPath }