1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2024-12-22 16:12:13 +01:00

twix.js v0.3.0 (#1029)

This commit is contained in:
nobody 2022-06-28 08:25:05 +02:00
parent 834def899b
commit 76b598e988
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
6 changed files with 10 additions and 0 deletions

View File

@ -1727,6 +1727,7 @@ https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.1/css/bootstrap.min
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.1/js/bootstrap.bundle.min.js
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js
https://cdnjs.cloudflare.com/ajax/libs/twix.js/0.3.0/twix.min.js
https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-min.js
https://cdnjs.cloudflare.com/ajax/libs/urlive/1.1.1/jquery.urlive.min.js
https://cdnjs.cloudflare.com/ajax/libs/vex-js/3.1.1/css/vex.min.css

View File

@ -478,6 +478,7 @@ mappings.cdn = {
'twitter-bootstrap/{version}/bootstrap.js': resources.bootstrapJS,
'twitter-bootstrap/{version}/bootstrap.min.css': resources.bootstrapCSS,
'twitter-bootstrap/{version}/bootstrap.css': resources.bootstrapCSS,
'twix.js/{version}/twix.': resources.twixJS,
'underscore.js/{version}/underscore.': resources.underscore,
'underscore.js/{version}/underscore-min.': resources.underscore,
'urlive/{version}/jquery.urlive.': resources.jqueryURLive,

View File

@ -1022,6 +1022,10 @@ var resources = {
'toastrJS': {
'path': 'resources/toastr.js/{version}/toastr.min.jsm'
},
// twix.js
'twixJS': {
'path': 'resources/twix.js/{version}/twix.min.jsm'
},
// Underscore.js
'underscore': {
'path': 'resources/underscore.js/{version}/underscore-min.jsm'

View File

@ -419,6 +419,7 @@ targets.setLastVersion = function (type, version) {
}
if (type.startsWith('/twitter-bootstrap/4.')) return '4.6.1';
if (type.startsWith('/twitter-bootstrap/5.')) return '5.1.3';
if (type.startsWith('/twix.js/0.')) return '0.3.0';
if (type.startsWith('/underscore.js/1.')) return '1.13.4';
if (type.startsWith('/urlive/1.')) return '1.1.1';
if (type.startsWith('/vanilla-lazyload')) return '17.8.2';
@ -456,6 +457,7 @@ targets.determineResourceName = function (filename) {
};
const ListOfFiles = {
'twix.min.jsm': 'twix.js',
'angular-locale_en-us.min.jsm': 'angular-i18n',
'angular-translate-loader-partial.min.jsm': 'angular-translate-loader-partial',
'tinymce.min.jsm': 'TinyMCE',

View File

@ -57,6 +57,7 @@
<ul>
<li>angular-translate-loader-partial v2.19.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1029">#1029</a>)</li>
<li>angular-i18n v1.8.3 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1029">#1029</a>)</li>
<li>twix.js v0.3.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1029">#1029</a>)</li>
</ul>
</div>
<div id="generator-section">

File diff suppressed because one or more lines are too long