Added: Day.js v1.10.4 (#258)
This commit is contained in:
parent
db3e820bc8
commit
71644ac77f
|
@ -257,6 +257,7 @@ mappings.cdn = {
|
|||
'cookieconsent2/{version}/cookieconsent.css': resources.cookieconsent2CSS,
|
||||
'd3/{version}/d3.min.js': resources.d3JS,
|
||||
'd3-legend/{version}/d3-legend.': resources.d3legend,
|
||||
'dayjs/{version}/dayjs.': resources.dayjs,
|
||||
'dexie/{version}/dexie.': resources.dexie,
|
||||
'docsearch.js/{version}/docsearch.min.js': resources.docsearchJS,
|
||||
'docsearch.js/{version}/docsearch.js': resources.docsearchJS,
|
||||
|
|
|
@ -339,6 +339,11 @@ var resources = {
|
|||
'path': 'resources/d3-legend/{version}/d3-legend.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// dayjs
|
||||
'dayjs': {
|
||||
'path': 'resources/dayjs/{version}/dayjs.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
// dexie
|
||||
'dexie': {
|
||||
'path': 'resources/dexie/{version}/dexie.min.jsm',
|
||||
|
|
|
@ -180,6 +180,8 @@ targets.setLastVersion = function (type, version) {
|
|||
return '6.5.0';
|
||||
} else if (type.startsWith('/d3-legend/2.')) {
|
||||
return '2.25.6';
|
||||
} else if (type.startsWith('/dayjs/1.')) {
|
||||
return '1.10.4';
|
||||
} else if (type.startsWith('/dexie/3.') || type.startsWith('/dexie/latest') ) {
|
||||
return '3.0.3';
|
||||
} else if (type.startsWith('/docsearch.js/2.')) {
|
||||
|
@ -486,6 +488,7 @@ targets.determineResourceName = function (filename) {
|
|||
};
|
||||
|
||||
const ListOfFiles = {
|
||||
'dayjs.min.jsm': 'Day.js',
|
||||
'jquery.validate.unobtrusive.min.jsm': 'jQuery Validate Unobtrusive',
|
||||
'jquery.sliderPro.min.js': 'Slider Pro (JS)',
|
||||
'knockout-latest.min.jsm': 'Knockout',
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
<li>Added: Missing resources for Highlight.js (<a href="https://codeberg.org/nobody/LocalCDN/issues/253">#253</a>)</li>
|
||||
<li>Improved: HTML filter (<a href="https://codeberg.org/nobody/LocalCDN/issues/257">#257</a>)</li>
|
||||
<li>Added: jquery-validation-unobtrusive v3.2.11 (<a href="https://codeberg.org/nobody/LocalCDN/issues/258">#258</a>)</li>
|
||||
<li>Added: Day.js v1.10.4 (<a href="https://codeberg.org/nobody/LocalCDN/issues/258">#258</a>)</li>
|
||||
</ul>
|
||||
<div id="generator-section">
|
||||
<div class="topic-label">
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue