Skip to content

Commit 783c9d6

Browse files
committed
Build: make compare size cache readable for manual edits
Ref gh-5440
1 parent 8a3a74c commit 783c9d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build/tasks/compare_size.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ function cacheResults( results ) {
6060
}
6161

6262
function saveCache( loc, cache ) {
63-
return fs.writeFile( loc, JSON.stringify( cache ) );
63+
64+
// Keep cache readable for manual edits
65+
return fs.writeFile( loc, JSON.stringify( cache, null, " " ) + "\n" );
6466
}
6567

6668
function compareSizes( existing, current, padLength ) {

0 commit comments

Comments
 (0)