Added: corejs-typeahead v1.3.1 (#923)
This commit is contained in:
parent
7bb9fabd9e
commit
5ec075ee32
|
@ -310,6 +310,7 @@ https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js
|
|||
https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.10/clipboard.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.1/cookieconsent.min.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.1/cookieconsent.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/corejs-typeahead/1.3.1/typeahead.bundle.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/d3/4.13.0/d3.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/d3/5.16.0/d3.min.js
|
||||
|
|
|
@ -272,6 +272,7 @@ mappings.cdn = {
|
|||
'cookieconsent2/{version}/cookieconsent.js': resources.cookieconsent2JS,
|
||||
'cookieconsent2/{version}/cookieconsent.min.css': resources.cookieconsent2CSS,
|
||||
'cookieconsent2/{version}/cookieconsent.css': resources.cookieconsent2CSS,
|
||||
'corejs-typeahead/{version}/typeahead.bundle.': resources.corejsTypeahead,
|
||||
'd3/{version}/d3.min.js': resources.d3JS,
|
||||
'd3-legend/{version}/d3-legend.': resources.d3legend,
|
||||
'dayjs/{version}/dayjs.': resources.dayjs,
|
||||
|
|
|
@ -319,6 +319,10 @@ var resources = {
|
|||
'cookieconsent2CSS': {
|
||||
'path': 'resources/cookieconsent2/{version}/cookieconsent.min.css'
|
||||
},
|
||||
// corejs-typeahead
|
||||
'corejsTypeahead': {
|
||||
'path': 'resources/corejs-typeahead/{version}/typeahead.bundle.min.jsm'
|
||||
},
|
||||
// D3.js
|
||||
'd3JS': {
|
||||
'path': 'resources/d3/{version}/d3.min.jsm'
|
||||
|
|
|
@ -164,6 +164,7 @@ targets.setLastVersion = function (type, version) {
|
|||
if (type.startsWith('/clipboard.js/1.')) return '1.7.1';
|
||||
if (type.startsWith('/clipboard.js/2.')) return '2.0.10';
|
||||
if (type.startsWith('/cookieconsent2/3.')) return '3.1.1';
|
||||
if (type.startsWith('/corejs-typeahead/1.')) return '1.3.1';
|
||||
if (type.startsWith('/d3/3.')) return '3.5.17';
|
||||
if (type.startsWith('/d3/4.')) return '4.13.0';
|
||||
if (type.startsWith('/d3/5.')) return '5.16.0';
|
||||
|
@ -437,6 +438,7 @@ targets.determineResourceName = function (filename) {
|
|||
};
|
||||
|
||||
const ListOfFiles = {
|
||||
'typeahead.bundle.min.jsm': 'corejs-typeahead',
|
||||
'lightbox.min.jsm': 'Lightbox2',
|
||||
'iziModal.min.jsm': 'iziModal',
|
||||
'granim.min.jsm': 'Granim.js',
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
<h2>New in LocalCDN:</h2>
|
||||
</div>
|
||||
<div class="release-notes-area">
|
||||
<p></p>
|
||||
<p>Added</p>
|
||||
<ul>
|
||||
<li></li>
|
||||
<li>corejs-typeahead v1.3.1 (<a href="https://codeberg.org/nobody/LocalCDN/issues/923">#923</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="generator-section">
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue