1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02:00

fix wrong version for bulma v0.x (#1632)

This commit is contained in:
nobody
2024-06-11 18:33:01 +02:00
parent f60a9dd343
commit 6081b0f411
2 changed files with 5 additions and 2 deletions

View File

@@ -164,8 +164,7 @@ targets.setLastVersion = function (type, version) {
if (version !== 'latest' && helpers.compareVersion('1.9.4', version)) return '1.9.4';
return '2.11.0';
}
if (type.startsWith('/bulma/0.')) return '1.0.0';
if (type.startsWith('/bulma/1.')) return '1.0.1';
if (type.startsWith('/bulma/0.') || type.startsWith('/bulma/1.')) return '1.0.1';
if (type.startsWith('/bxslider/4.')) return '4.2.17';
if (type.startsWith('/Chart.js/2.')) return '2.9.4';
if (type.startsWith('/Chart.js/3.')) return '3.9.1';