Skip to content

Commit 15a3dc8

Browse files
mansonakategengler
authored andcommitted
speed up builds
1 parent 05201da commit 15a3dc8

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

prember-urls.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,22 @@ module.exports = function () {
4141
urls.push(`/${p}/${uniqVersion}/${suffix}`);
4242
};
4343

44-
const oldVersions = ['1.13', '2.18', '3.28', '4.4', '4.8', '4.12'];
44+
const oldVersions = [
45+
'1.13',
46+
'2.18',
47+
'3.28',
48+
'4.4',
49+
'4.8',
50+
'4.12',
51+
'5.4',
52+
'5.8',
53+
'5.12',
54+
];
4555

4656
uniqueProjectVersions.forEach((uniqVersion) => {
4757
if (
4858
!oldVersions.includes(uniqVersion) &&
49-
!semver.gte(`${uniqVersion}.0`, '5.0.0')
59+
!semver.gte(`${uniqVersion}.0`, '6.0.0')
5060
) {
5161
return;
5262
}

0 commit comments

Comments
 (0)