@@ -6,6 +6,7 @@ import { exec as nodeExec } from "node:child_process";
6
6
import isCleanWorkingDir from "./lib/isCleanWorkingDir.js" ;
7
7
8
8
const VERSION = 1 ;
9
+ const lastRunBranch = " last run" ;
9
10
10
11
const gzip = promisify ( zlib . gzip ) ;
11
12
const exec = promisify ( nodeExec ) ;
@@ -39,7 +40,7 @@ async function getCache( loc ) {
39
40
return { } ;
40
41
}
41
42
42
- const lastRun = cache [ " last run" ] ;
43
+ const lastRun = cache [ lastRunBranch ] ;
43
44
if ( ! lastRun || ! lastRun . meta || lastRun . meta . version !== VERSION ) {
44
45
console . log ( "Compare cache version mismatch. Rewriting..." ) ;
45
46
return { } ;
@@ -73,6 +74,22 @@ function compareSizes( existing, current, padLength ) {
73
74
return chalk . green ( `${ delta } ` . padStart ( padLength ) ) ;
74
75
}
75
76
77
+ function sortBranches ( a , b ) {
78
+ if ( a === lastRunBranch ) {
79
+ return 1 ;
80
+ }
81
+ if ( b === lastRunBranch ) {
82
+ return - 1 ;
83
+ }
84
+ if ( a < b ) {
85
+ return - 1 ;
86
+ }
87
+ if ( a > b ) {
88
+ return 1 ;
89
+ }
90
+ return 0 ;
91
+ }
92
+
76
93
export async function compareSize ( { cache = ".sizecache.json" , files } = { } ) {
77
94
if ( ! files || ! files . length ) {
78
95
throw new Error ( "No files specified" ) ;
@@ -116,7 +133,7 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
116
133
return `${ rawSize } ${ gzSize } ${ result . filename } ` ;
117
134
} ) ;
118
135
119
- const comparisons = Object . keys ( sizeCache ) . map ( function ( branch ) {
136
+ const comparisons = Object . keys ( sizeCache ) . sort ( sortBranches ) . map ( function ( branch ) {
120
137
const meta = sizeCache [ branch ] . meta || { } ;
121
138
const commit = meta . commit ;
122
139
@@ -153,7 +170,7 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
153
170
154
171
// Always save the last run
155
172
// Save version under last run
156
- sizeCache [ " last run" ] = {
173
+ sizeCache [ lastRunBranch ] = {
157
174
meta : { version : VERSION } ,
158
175
files : cacheResults ( results )
159
176
} ;
0 commit comments