Skip to content

Commit f242bda

Browse files
committed
Fix format
1 parent 7322995 commit f242bda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gulp-src/prune.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ async function pruneTask() {
119119
}
120120

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

0 commit comments

Comments
 (0)