Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Jan 13, 2025
1 parent 7322995 commit f242bda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulp-src/prune.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ async function pruneTask() {
}

if (n > 0) keysToPrune.forEach((key) => delete entries[key]);
const deleteCount = Math.min(n,keysToPrune.length) + numEntriesWith4xxStatus;
const deleteCount =
Math.min(n, keysToPrune.length) + numEntriesWith4xxStatus;
console.log(`INFO: ${deleteCount} entries pruned.`);
const prettyJson = JSON.stringify(entries, null, 2) + '\n';
await fs.writeFile(refcacheFile, prettyJson, 'utf8');
Expand Down

0 comments on commit f242bda

Please sign in to comment.