Added: Bulma v0.9.2 (#299)
This commit is contained in:
parent
a3e6fe93fc
commit
0e91652ae3
|
@ -239,6 +239,7 @@ mappings.cdn = {
|
|||
'bootstrap-vue/{version}/bootstrap-vue.min.css': resources.bootstrapVueCSS,
|
||||
'bootstrap-vue/{version}/bootstrap-vue.css': resources.bootstrapVueCSS,
|
||||
'bootstrap-3-typeahead/{version}/bootstrap3-typeahead.': resources.bootstrap3Typeahead,
|
||||
'bulma/{version}/css/bulma.': resources.bulma,
|
||||
'Chart.js/{version}/Chart.bundle.': resources.chartJs,
|
||||
'Chart.js/{version}/Chart.min.js': resources.chartJs,
|
||||
'Chart.js/{version}/Chart.js': resources.chartJs,
|
||||
|
@ -452,6 +453,7 @@ mappings.cdn = {
|
|||
'bootstrap-vue@{version}/dist/bootstrap-vue.css': resources.bootstrapVueCSS,
|
||||
'bootstrap-vue@{version}/dist/bootstrap-vue.min.js': resources.bootstrapVueJS,
|
||||
'bootstrap-vue@{version}/dist/bootstrap-vue.js': resources.bootstrapVueJS,
|
||||
'bulma@{version}/css/bulma.': resources.bulma,
|
||||
'chart.js@{version}': resources.chartJs,
|
||||
'clipboard@{version}/dist/clipboard.': resources.clipboardJS,
|
||||
'dexie@{version}/dist/dexie.': resources.dexie,
|
||||
|
|
|
@ -294,6 +294,11 @@ var resources = {
|
|||
'path': 'resources/bootstrap-vue/{version}/bootstrap-vue.min.css',
|
||||
'type': 'text/css'
|
||||
},
|
||||
// Bulma
|
||||
'bulma': {
|
||||
'path': 'resources/bulma/{version}/css/bulma.min.css',
|
||||
'type': 'text/css'
|
||||
},
|
||||
// Chart.js
|
||||
'chartJs': {
|
||||
'path': 'resources/Chart.js/{version}/Chart.bundle.min.jsm',
|
||||
|
|
|
@ -169,6 +169,8 @@ targets.setLastVersion = function (type, version) {
|
|||
return '2.21.2';
|
||||
} else if (type.startsWith('/bootstrap-3-typeahead/4.')) {
|
||||
return '4.0.2';
|
||||
} else if (type.startsWith('/bulma/0.')) {
|
||||
return '0.9.2';
|
||||
} else if (type.startsWith('/Chart.js/2.')) {
|
||||
return '2.9.4';
|
||||
} else if (type.startsWith('/chosen/1.')) {
|
||||
|
@ -514,6 +516,7 @@ targets.determineResourceName = function (filename) {
|
|||
};
|
||||
|
||||
const ListOfFiles = {
|
||||
'bulma.min.css': 'Bulma',
|
||||
'hogan.min.jsm': 'hogan.js',
|
||||
'highlight.min.jsm': 'highlight.js (Bundle)',
|
||||
'jquery.cookie.min.jsm': 'jquery-cookie',
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
<li>Updated: vue-resource v1.5.1 -> v1.5.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/296">#296</a>)</li>
|
||||
<li>Added: jQuery v3.6.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/297">#297</a>)</li>
|
||||
<li>Updated: angular-translate v2.7.2 -> v2.18.4 (<a href="https://codeberg.org/nobody/LocalCDN/issues/298">#298</a>)</li>
|
||||
<li>Added: Bulma v0.9.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/299">#299</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