1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02: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
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/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/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/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/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/urlive/1.1.1/jquery.urlive.min.js
https://cdnjs.cloudflare.com/ajax/libs/vex-js/3.1.1/css/vex.min.css 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.js': resources.bootstrapJS,
'twitter-bootstrap/{version}/bootstrap.min.css': resources.bootstrapCSS, 'twitter-bootstrap/{version}/bootstrap.min.css': resources.bootstrapCSS,
'twitter-bootstrap/{version}/bootstrap.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.': resources.underscore,
'underscore.js/{version}/underscore-min.': resources.underscore, 'underscore.js/{version}/underscore-min.': resources.underscore,
'urlive/{version}/jquery.urlive.': resources.jqueryURLive, 'urlive/{version}/jquery.urlive.': resources.jqueryURLive,

View File

@@ -1022,6 +1022,10 @@ var resources = {
'toastrJS': { 'toastrJS': {
'path': 'resources/toastr.js/{version}/toastr.min.jsm' 'path': 'resources/toastr.js/{version}/toastr.min.jsm'
}, },
// twix.js
'twixJS': {
'path': 'resources/twix.js/{version}/twix.min.jsm'
},
// Underscore.js // Underscore.js
'underscore': { 'underscore': {
'path': 'resources/underscore.js/{version}/underscore-min.jsm' '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/4.')) return '4.6.1';
if (type.startsWith('/twitter-bootstrap/5.')) return '5.1.3'; 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('/underscore.js/1.')) return '1.13.4';
if (type.startsWith('/urlive/1.')) return '1.1.1'; if (type.startsWith('/urlive/1.')) return '1.1.1';
if (type.startsWith('/vanilla-lazyload')) return '17.8.2'; if (type.startsWith('/vanilla-lazyload')) return '17.8.2';
@@ -456,6 +457,7 @@ targets.determineResourceName = function (filename) {
}; };
const ListOfFiles = { const ListOfFiles = {
'twix.min.jsm': 'twix.js',
'angular-locale_en-us.min.jsm': 'angular-i18n', 'angular-locale_en-us.min.jsm': 'angular-i18n',
'angular-translate-loader-partial.min.jsm': 'angular-translate-loader-partial', 'angular-translate-loader-partial.min.jsm': 'angular-translate-loader-partial',
'tinymce.min.jsm': 'TinyMCE', 'tinymce.min.jsm': 'TinyMCE',

View File

@@ -57,6 +57,7 @@
<ul> <ul>
<li>angular-translate-loader-partial v2.19.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1029">#1029</a>)</li> <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>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> </ul>
</div> </div>
<div id="generator-section"> <div id="generator-section">

File diff suppressed because one or more lines are too long