Skip to content

Commit 8a3a74c

Browse files
committed
Build: fix size comparison for slim files when the branch is dirty
Ref gh-5440
1 parent ae7f613 commit 8a3a74c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/tasks/compare_size.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export async function compareSize( { cache = ".sizecache.json", files } = {} ) {
109109
// Remove the short SHA and .dirty from comparisons.
110110
// The short SHA so commits can be compared against each other
111111
// and .dirty to compare with the existing branch during development.
112-
const sha = /jQuery v\d+.\d+.\d+(?:-\w+)?(?:\+|\+slim\.)?([^ \.]+(?:\.dirty)?)?/.exec( contents )[ 1 ];
112+
const sha = /jQuery v\d+.\d+.\d+(?:-\w+)?(?:\+slim\.|\+)?([^ \.]+(?:\.dirty)?)?/.exec( contents )[ 1 ];
113113
contents = contents.replace( new RegExp( sha, "g" ), "" );
114114

115115
const size = Buffer.byteLength( contents, "utf8" );

0 commit comments

Comments
 (0)