We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a3a74c commit 783c9d6Copy full SHA for 783c9d6
1 file changed
build/tasks/compare_size.mjs
@@ -60,7 +60,9 @@ function cacheResults( results ) {
60
}
61
62
function saveCache( loc, cache ) {
63
- return fs.writeFile( loc, JSON.stringify( cache ) );
+
64
+ // Keep cache readable for manual edits
65
+ return fs.writeFile( loc, JSON.stringify( cache, null, " " ) + "\n" );
66
67
68
function compareSizes( existing, current, padLength ) {
0 commit comments