Skip to content

Commit

Permalink
feat(parse-params): rename temporary cache folder to store raw config…
Browse files Browse the repository at this point in the history
… in JavaScript
  • Loading branch information
GervinFung committed Sep 12, 2022
1 parent a9a9987 commit 193b7f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/parseParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export function configuration() {
return parseAsDenoifyParams(configFileType.configFileBasename !== packageJson ? parsed : parsed.denoify);
}
case "js": {
const denoifyCacheDirPath = `${process.cwd()}/node_modules/.cache/denoify`;
const denoifyCacheDirPath = `${process.cwd()}/node_modules/.cache/denoify/cacheDirPath`;
if (!fs.existsSync(denoifyCacheDirPath)) {
fs.mkdir(denoifyCacheDirPath, () => undefined);
}
Expand Down

0 comments on commit 193b7f4

Please sign in to comment.