@@ -5,6 +5,8 @@ import zlib from "node:zlib";
5
5
import { exec as nodeExec } from "node:child_process" ;
6
6
import isCleanWorkingDir from "./lib/isCleanWorkingDir.js" ;
7
7
8
+ const VERSION = 1 ;
9
+
8
10
const gzip = promisify ( zlib . gzip ) ;
9
11
const exec = promisify ( nodeExec ) ;
10
12
@@ -13,13 +15,47 @@ async function getBranchName() {
13
15
return stdout . trim ( ) ;
14
16
}
15
17
18
+ async function getCommitHash ( ) {
19
+ const { stdout } = await exec ( "git rev-parse HEAD" ) ;
20
+ return stdout . trim ( ) ;
21
+ }
22
+
23
+ function getBranchHeader ( branch , commit ) {
24
+ let branchHeader = branch . trim ( ) ;
25
+ if ( commit ) {
26
+ branchHeader = chalk . bold ( branchHeader ) + chalk . gray ( ` @${ commit } ` ) ;
27
+ } else {
28
+ branchHeader = chalk . italic ( branchHeader ) ;
29
+ }
30
+ return branchHeader ;
31
+ }
32
+
16
33
async function getCache ( loc ) {
34
+ let cache ;
17
35
try {
18
36
const contents = await fs . promises . readFile ( loc , "utf8" ) ;
19
- return JSON . parse ( contents ) ;
37
+ cache = JSON . parse ( contents ) ;
20
38
} catch ( err ) {
21
39
return { } ;
22
40
}
41
+
42
+ const lastRun = cache [ " last run" ] ;
43
+ if ( ! lastRun || ! lastRun . meta || lastRun . meta . version !== VERSION ) {
44
+ console . log ( "Compare cache version mismatch. Rewriting..." ) ;
45
+ return { } ;
46
+ }
47
+ return cache ;
48
+ }
49
+
50
+ function cacheResults ( results ) {
51
+ const files = Object . create ( null ) ;
52
+ results . forEach ( function ( result ) {
53
+ files [ result . filename ] = {
54
+ raw : result . raw ,
55
+ gz : result . gz
56
+ } ;
57
+ } ) ;
58
+ return files ;
23
59
}
24
60
25
61
function saveCache ( loc , cache ) {
@@ -43,6 +79,7 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
43
79
}
44
80
45
81
const branch = await getBranchName ( ) ;
82
+ const commit = await getCommitHash ( ) ;
46
83
const sizeCache = await getCache ( cache ) ;
47
84
48
85
let rawPadLength = 0 ;
@@ -52,9 +89,11 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
52
89
53
90
let contents = await fs . promises . readFile ( filename , "utf8" ) ;
54
91
55
- // Remove the banner for size comparisons.
56
- // The version string can vary widely by short SHA.
57
- contents = contents . replace ( / \/ \* \! j Q u e r y [ ^ \n ] + / , "" ) ;
92
+ // Remove the short SHA and .dirty from comparisons.
93
+ // The short SHA so commits can be compared against each other
94
+ // and .dirty to compare with the existing branch during development.
95
+ const sha = / j Q u e r y v \d + .\d + .\d + (?: - \w + ) ? \+ (?: s l i m .) ? ( [ ^ \. ] + (?: \. d i r t y ) ? ) / . exec ( contents ) [ 1 ] ;
96
+ contents = contents . replace ( new RegExp ( sha , "g" ) , "" ) ;
58
97
59
98
const size = Buffer . byteLength ( contents , "utf8" ) ;
60
99
const gzippedSize = ( await gzip ( contents ) ) . length ;
@@ -67,7 +106,7 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
67
106
} )
68
107
) ;
69
108
70
- const header = "raw" . padStart ( rawPadLength ) +
109
+ const sizeHeader = "raw" . padStart ( rawPadLength ) +
71
110
"gz" . padStart ( gzPadLength + 1 ) +
72
111
" Filename" ;
73
112
@@ -78,8 +117,12 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
78
117
} ) ;
79
118
80
119
const comparisons = Object . keys ( sizeCache ) . map ( function ( branch ) {
81
- const branchSizes = Object . keys ( sizeCache [ branch ] ) . map ( function ( filename ) {
82
- const branchResult = sizeCache [ branch ] [ filename ] ;
120
+ const meta = sizeCache [ branch ] . meta || { } ;
121
+ const commit = meta . commit ;
122
+
123
+ const files = sizeCache [ branch ] . files ;
124
+ const branchSizes = Object . keys ( files ) . map ( function ( filename ) {
125
+ const branchResult = files [ filename ] ;
83
126
const compareResult = results . find ( function ( result ) {
84
127
return result . filename === filename ;
85
128
} ) || { } ;
@@ -91,38 +134,41 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
91
134
92
135
return [
93
136
"" , // New line before each branch
94
- chalk . bold ( branch ) ,
95
- header ,
137
+ getBranchHeader ( branch , commit ) ,
138
+ sizeHeader ,
96
139
...branchSizes
97
140
] . join ( "\n" ) ;
98
141
} ) ;
99
142
100
143
const output = [
101
144
"" , // Opening new line
102
145
chalk . bold ( "Sizes" ) ,
103
- header ,
146
+ sizeHeader ,
104
147
...sizes ,
105
148
...comparisons ,
106
149
"" // Closing new line
107
150
] . join ( "\n" ) ;
108
151
109
152
console . log ( output ) ;
110
153
154
+ // Always save the last run
155
+ // Save version under last run
156
+ sizeCache [ " last run" ] = {
157
+ meta : { version : VERSION } ,
158
+ files : cacheResults ( results )
159
+ } ;
160
+
111
161
// Only save cache for the current branch
112
162
// if the working directory is clean.
113
163
if ( await isCleanWorkingDir ( ) ) {
114
- sizeCache [ branch ] = { } ;
115
- results . forEach ( function ( result ) {
116
- sizeCache [ branch ] [ result . filename ] = {
117
- raw : result . raw ,
118
- gz : result . gz
119
- } ;
120
- } ) ;
121
-
122
- await saveCache ( cache , sizeCache ) ;
123
-
164
+ sizeCache [ branch ] = {
165
+ meta : { commit } ,
166
+ files : cacheResults ( results )
167
+ } ;
124
168
console . log ( `Saved cache for ${ branch } .` ) ;
125
169
}
126
170
171
+ await saveCache ( cache , sizeCache ) ;
172
+
127
173
return results ;
128
174
}
0 commit comments