LocalCDN-Firefox-Chrome-Brave/modules/internal/targets.js

961 lines
39 KiB
JavaScript
Raw Normal View History

2020-11-05 07:07:29 +01:00
/**
* Internal Target Module
* Belongs to LocalCDN (since 2020-02-26)
*
* @author nobody
* @since 2020-11-04
*
* @license MPL 2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
'use strict';
2021-02-17 07:01:08 +01:00
2020-11-05 07:07:29 +01:00
/**
* Targets
*/
var targets = {};
2021-02-17 07:01:08 +01:00
2020-11-05 07:07:29 +01:00
/**
* Public Methods
*/
2020-11-09 19:42:09 +01:00
targets.determineBundle = function (path) {
path = path.replace('resources', '');
let val = '';
2020-11-09 19:42:09 +01:00
if (path.startsWith('/findify')) {
val = 'Findify';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/bootstrap-datepicker')) {
val = 'Bootstrap Datepicker';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/jquery.lazy/')) {
val = 'jQuery Lazy';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/waypoints/')) {
val = 'Waypoints';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/highlight.js/')) {
val = 'highlight.js';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/element-ui/')) {
val = 'ElementUI';
2020-11-09 19:42:09 +01:00
} else if (path.startsWith('/select2/')) {
val = 'Select2';
2020-11-09 19:43:39 +01:00
} else if (path.startsWith('/gsap/')) {
val = 'GSAP';
} else if (path.startsWith('/angular-translate/')) {
val = 'angular-translate';
2021-03-03 23:01:41 +01:00
} else if (path.startsWith('/OwlCarousel2/')) {
val = 'Owl Carousel 2';
} else if (Regex.FONT_AWESOME_FONTS_ONLY.test(path)) {
val = 'Font Awesome (Fonts)';
2020-11-20 08:57:44 +01:00
} else if (Regex.BOOTSTRAP_FONTS_ONLY.test(path)) {
val = 'Bootstrap (Fonts)';
2021-03-17 18:50:41 +01:00
} else if (path.startsWith('/jquery.cycle2/')) {
val = 'Cycle2';
2021-03-31 06:55:00 +02:00
} else if (path.startsWith('/semantic-ui/')) {
val = 'Semantic UI';
} else if (path.startsWith('/datatables/')) {
val = 'DataTables';
2021-05-26 06:56:35 +02:00
} else if (path.startsWith('/mathjax/')) {
val = 'MathJax';
2021-09-18 08:30:45 +02:00
} else if (path.startsWith('/pure/')) {
val = 'Pure CSS';
2021-09-18 08:36:44 +02:00
} else if (path.startsWith('/vex-js/')) {
val = 'vex';
2020-11-05 07:07:29 +01:00
}
2021-02-17 07:01:08 +01:00
return val === '' ? val : `${val} (Bundle)`;
2020-11-05 07:07:29 +01:00
};
targets.setLastVersion = function (type, version) {
2020-11-07 08:21:14 +01:00
type = type.replace('resources', '');
2020-11-05 07:07:29 +01:00
if (version !== null && version !== undefined) {
version = version.toString();
}
if (type.startsWith('/ajax-bootstrap-select/1.')) {
return '1.4.5';
} else if (type.startsWith('/algoliasearch/3.')) {
2020-11-05 07:07:29 +01:00
return '3.35.1';
2020-11-08 20:07:17 +01:00
} else if (type.startsWith('/algoliasearch/4.')) {
return '4.11.0';
2021-06-10 09:22:13 +02:00
} else if (type.startsWith('/alpinejs/2.')) {
return '2.8.2';
2021-06-14 06:25:19 +02:00
} else if (type.startsWith('/alpinejs/3.')) {
2021-11-25 06:09:06 +01:00
return '3.5.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/anchor-js/3.')) {
2020-11-05 07:07:29 +01:00
return '3.2.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/anchor-js/4.')) {
return '4.3.1';
2021-02-01 06:10:04 +01:00
} else if (type.startsWith('/angular.js/1.')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('1.2.19', version)) return '1.2.19'; // <= v1.2.19
else if (helpers.compareVersion('1.2.32', version)) return '1.2.32'; // > 1.2.19 to <= v1.2.32
2021-09-26 08:40:01 +02:00
else if (helpers.compareVersion('1.3.0', version)) return '1.3.0'; // > 1.2.32 to <= 1.3.0
else if (helpers.compareVersion('1.3.20', version)) return '1.3.20'; // > 1.3.0 to <= 1.3.20
2020-11-05 07:07:29 +01:00
else if (helpers.compareVersion('1.4.14', version)) return '1.4.14'; // > 1.3.20 to <= 1.4.14
else if (helpers.compareVersion('1.5.11', version)) return '1.5.11'; // > 1.4.14 to <= 1.5.11
else if (helpers.compareVersion('1.6.10', version)) return '1.6.10'; // > 1.5.11 to <= 1.6.10
else return '1.8.2'; // >= 1.6.11
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angularjs-slider/6.')) {
2020-11-05 07:07:29 +01:00
return '6.7.0';
} else if (type.startsWith('/angularjs-slider/7.')) {
return '7.0.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angularjs-toaster/0.')) {
2020-11-05 07:07:29 +01:00
return '0.4.18';
} else if (type.startsWith('/angularjs-toaster/1.')) {
return '1.2.0';
} else if (type.startsWith('/angularjs-toaster/2.')) {
return '2.2.0';
} else if (type.startsWith('/angularjs-toaster/3.')) {
return '3.0.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-bootstrap-colorpicker/3.')) {
2020-11-05 07:07:29 +01:00
return '3.0.32';
2021-02-02 05:43:21 +01:00
} else if (type.startsWith('/zumper-angular-payments/1.')) {
2020-11-05 07:07:29 +01:00
return '1.0.7';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-stripe-checkout@5.')) {
2020-11-05 07:07:29 +01:00
return '5.1.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-ui-bootstrap/')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('0.10.0', version)) return '0.10.0'; // <= v0.10.0
else if (helpers.compareVersion('0.14.3', version)) return '0.14.3'; // > 0.10.0 <= v0.14.3
else if (helpers.compareVersion('0.14.4', version)) return '1.3.3'; // > 0.14.3 <= v1.3.3
return '2.5.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-ui-router/')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('0.4.3', version)) return '0.4.3'; // <= 0.4.3
else return '1.0.29'; // > 0.4.3
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-ui-utils/0.')) {
2020-11-05 07:07:29 +01:00
return '0.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-ui-select/0.')) {
return '0.20.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angucomplete-alt/3.')) {
2020-11-05 07:07:29 +01:00
return '3.0.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/animate.css/3.')) {
2020-11-05 07:07:29 +01:00
return '3.7.2';
2020-11-14 09:08:46 +01:00
} else if (type.startsWith('/animate.css/4.')) {
return '4.1.1';
2021-03-31 07:08:37 +02:00
} else if (type.startsWith('/animejs/3.')) {
return '3.2.1';
2021-05-06 07:03:49 +02:00
} else if (type.startsWith('/autocomplete.js/0.')) {
return '0.38.0';
2021-06-15 05:46:52 +02:00
} else if (type.startsWith('/autocomplete.js/1.')) {
return '1.1.0';
} else if (type.startsWith('/angular-material/1.') || type.startsWith('/angular-material/0.')) {
return '1.2.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/angular-translate/2.')) {
return '2.19.0';
2021-08-03 06:29:17 +02:00
} else if (type.startsWith('/aos/2.')) {
return '2.3.4';
} else if (type.startsWith('/appboy-web-sdk/3.')) {
2021-10-09 11:41:12 +02:00
return '3.4.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/axios/0.')) {
2021-10-27 06:23:21 +02:00
return '0.24.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/babel-polyfill/')) {
2020-11-05 07:07:29 +01:00
return '7.12.1';
} else if (type.startsWith('/babel-standalone/6.')) {
2021-04-01 07:02:57 +02:00
return '6.26.0';
} else if (type.startsWith('/babel-standalone/7.')) {
return '7.14.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/backbone.js/0.')) {
2020-11-05 07:07:29 +01:00
return '0.9.10';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/backbone.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.4.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/baguettebox.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.11.1';
2020-12-24 10:27:05 +01:00
} else if (type.startsWith('/blazy/1.')) {
return '1.8.2';
2021-04-02 07:06:36 +02:00
} else if (type.startsWith('/bluebird/3.')) {
return '3.7.2';
} else if (type.startsWith('/bodymovin/4.')) {
return '4.13.0';
} else if (type.startsWith('/bodymovin/5.')) {
2021-11-13 07:10:45 +01:00
return '5.8.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootbox.js/4.')) {
2020-11-05 07:07:29 +01:00
return '4.4.0';
2020-11-14 09:12:44 +01:00
} else if (type.startsWith('/bootbox.js/5.')) {
return '5.5.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-daterangepicker/2.')) {
2020-11-05 07:07:29 +01:00
return '2.1.27';
} else if (type.startsWith('/bootstrap-daterangepicker/3.')) {
return '3.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-datepicker/1.')) {
2020-11-05 07:07:29 +01:00
return '1.9.0';
2021-07-20 06:32:55 +02:00
} else if (type.startsWith('/bootstrap-icons/1.')) {
return '1.7.1';
} else if (type.startsWith('/bootstrap-multiselect/0.')) {
return '0.9.16';
} else if (type.startsWith('/bootstrap-multiselect/1.')) {
return '1.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-slider/10.')) {
2020-11-05 07:07:29 +01:00
return '10.6.2';
2020-11-14 09:16:50 +01:00
} else if (type.startsWith('/bootstrap-slider/11.')) {
return '11.0.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-select/1.')) {
return '1.13.18';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-table/1.')) {
return '1.19.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-toggle/2.')) {
2020-11-05 07:07:29 +01:00
return '2.2.2';
2021-01-22 06:28:18 +01:00
} else if (type.startsWith('/bootstrap-vue/2.')) {
return '2.21.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/bootstrap-3-typeahead/4.')) {
2020-11-05 07:07:29 +01:00
return '4.0.2';
2021-09-23 08:20:01 +02:00
} else if (type.startsWith('/bootswatch/3.')) {
return '3.4.0';
2021-09-23 08:20:45 +02:00
} else if (type.startsWith('/bootswatch/4.')) {
2021-11-01 07:56:58 +01:00
return '4.6.1';
2021-09-23 08:21:13 +02:00
} else if (type.startsWith('/bootswatch/5.')) {
2021-10-16 08:30:33 +02:00
return '5.1.3';
2021-04-28 05:01:46 +02:00
} else if (type.startsWith('/bowser/')) {
2021-04-29 06:29:12 +02:00
if (version !== 'latest' && helpers.compareVersion('1.9.4', version)) return '1.9.4';
return '2.11.0';
2021-03-05 06:54:43 +01:00
} else if (type.startsWith('/bulma/0.')) {
2021-06-19 07:33:49 +02:00
return '0.9.3';
2021-05-06 06:39:17 +02:00
} else if (type.startsWith('/bxslider/4.')) {
return '4.2.15';
2021-02-02 05:46:42 +01:00
} else if (type.startsWith('/Chart.js/2.')) {
2020-11-05 07:07:29 +01:00
return '2.9.4';
2021-04-03 06:20:40 +02:00
} else if (type.startsWith('/Chart.js/3.')) {
2021-10-24 09:40:26 +02:00
return '3.6.0';
2021-07-07 07:07:41 +02:00
} else if (type.startsWith('/clappr/0.') || type.startsWith('/clappr/latest/')) {
2021-10-09 11:45:31 +02:00
return '0.4.6';
2021-01-04 07:27:48 +01:00
} else if (type.startsWith('/chosen/1.')) {
return '1.8.7';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/clipboard.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.7.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/clipboard.js/2.')) {
return '2.0.8';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/cookieconsent2/3.')) {
2020-11-05 07:07:29 +01:00
return '3.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/d3/3.')) {
2020-11-05 07:07:29 +01:00
return '3.5.17';
2020-11-14 09:18:13 +01:00
} else if (type.startsWith('/d3/4.')) {
return '4.13.0';
} else if (type.startsWith('/d3/5.')) {
return '5.16.0';
} else if (type.startsWith('/d3/6.')) {
2021-04-17 06:37:40 +02:00
return '6.7.0';
2021-06-13 06:32:10 +02:00
} else if (type.startsWith('/d3/7.')) {
2021-10-04 20:52:00 +02:00
return '7.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/d3-legend/2.')) {
2020-11-05 07:07:29 +01:00
return '2.25.6';
} else if (type.startsWith('/datatables/1.')) {
2021-08-29 08:19:58 +02:00
return '1.11.0';
2021-01-31 06:33:28 +01:00
} else if (type.startsWith('/dayjs/1.')) {
2021-09-11 19:43:19 +02:00
return '1.10.7';
2021-02-17 07:01:08 +01:00
} else if (type.startsWith('/dexie/3.') || type.startsWith('/dexie/latest')) {
2021-11-19 06:38:17 +01:00
return '3.2.0';
2020-12-29 17:39:19 +01:00
} else if (type.startsWith('/docsearch.js/2.')) {
return '2.6.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/dojo/1.')) {
2021-04-23 07:20:40 +02:00
return '1.16.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/drawer/3.')) {
2020-11-05 07:07:29 +01:00
return '3.2.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/element-ui/2.')) {
2021-11-19 06:21:26 +01:00
return '2.15.7';
2021-05-01 06:23:14 +02:00
} else if (type.startsWith('/embedly-player/0.')) {
return '0.1.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/ember.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.13.13';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/ember.js/2.')) {
2020-11-05 07:07:29 +01:00
return '2.18.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/ember.js/3.')) {
2021-11-06 08:18:35 +01:00
return '3.28.6';
2021-11-19 06:42:31 +01:00
} else if (type.startsWith('/ember.js/4.')) {
return '4.0.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/ethjs')) {
2021-04-23 18:13:28 +02:00
return '0.4.0';
2021-07-30 21:00:21 +02:00
} else if (type.startsWith('/exif-js/2.')) {
return '2.3.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/ext-core/3.')) {
2020-11-05 07:07:29 +01:00
return '3.1.0';
2021-06-08 08:00:23 +02:00
} else if (type.startsWith('/fastclick/1.')) {
return '1.0.6';
2021-05-25 07:01:00 +02:00
} else if (type.startsWith('/findify')) {
2021-02-28 18:10:28 +01:00
if (helpers.compareVersion('6.9.15', version)) return '6.9.15'; // <= 6.9.15
2021-05-18 06:10:49 +02:00
else if (helpers.compareVersion('6.17.0', version)) return '6.17.0'; // > 6.9.15 to <= 6.17.0
else return '7.1.14';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/fancybox/2.')) {
return '2.1.7';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/fancybox/3.')) {
2020-11-05 07:07:29 +01:00
return '3.5.7';
2021-04-02 07:04:06 +02:00
} else if (type.startsWith('/feather-icons/4.')) {
return '4.28.0';
2021-08-11 06:45:48 +02:00
} else if (type.startsWith('/FitText.js/1.')) {
return '1.2.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/flv.js/')) {
2021-09-14 06:17:23 +02:00
return '1.6.2';
2021-02-02 05:48:41 +01:00
} else if (type.startsWith('/font-awesome/3.')) {
2020-11-05 07:07:29 +01:00
return '3.2.1';
2021-02-02 05:48:41 +01:00
} else if (type.startsWith('/font-awesome/4.')) {
2020-11-05 07:07:29 +01:00
return '4.7.0';
2021-02-02 05:48:41 +01:00
} else if (type.startsWith('/font-awesome/5.')) {
2021-08-05 06:16:24 +02:00
return '5.15.4';
2021-11-08 06:11:38 +01:00
} else if (type.startsWith('/fork-awesome/1.')) {
return '1.2.0';
2021-09-19 09:16:02 +02:00
} else if (type.startsWith('/foundicons/3.')) {
return '3.0.0';
2020-11-09 19:43:39 +01:00
} else if (type.startsWith('/gsap/1.')) {
return '1.20.5';
} else if (type.startsWith('/gsap/2.')) {
return '2.1.3';
} else if (type.startsWith('/gsap/3.')) {
2021-10-01 05:54:49 +02:00
return '3.8.0';
} else if (type.startsWith('/google-material-design-icons/')) {
return 'v117';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/highlight.js/7.')) {
return '9.18.5';
} else if (type.startsWith('/highlight.js/8.')) {
return '9.18.5';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/highlight.js/9.')) {
return '9.18.5';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/highlight.js/10.')) {
return '10.7.3';
} else if (type.startsWith('/highlight.js/11.')) {
2021-10-18 07:02:03 +02:00
return '11.3.1';
2020-11-14 09:23:12 +01:00
} else if (type.startsWith('/history/4.')) {
2020-11-05 07:07:29 +01:00
return '4.10.1';
2020-11-14 09:23:12 +01:00
} else if (type.startsWith('/history/5.')) {
2021-11-03 05:38:02 +01:00
return '5.1.0';
2021-04-02 07:20:06 +02:00
} else if (type.startsWith('/hls.js/0.')) {
return '0.14.17';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/hls.js/1.')) {
2021-11-13 07:14:06 +01:00
return '1.1.1';
2021-02-19 07:20:50 +01:00
} else if (type.startsWith('/hogan.js/')) {
return '3.0.2';
2021-07-03 06:42:24 +02:00
} else if (type.startsWith('/instantsearch.css/7.')) {
return '7.4.5';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/instantsearch.js/3.')) {
2020-11-05 07:07:29 +01:00
return '3.7.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/instantsearch.js/4.')) {
return '4.33.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/iScroll/5.')) {
2020-11-05 07:07:29 +01:00
return '5.2.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jets/0.')) {
2020-11-05 07:07:29 +01:00
return '0.14.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery/1.')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('1.7.1', version)) return '1.7.1'; // <= v1.7.1
else if (helpers.compareVersion('1.8.3', version)) return '1.8.3'; // > 1.7.1 to <= 1.8.3
2021-08-26 06:52:33 +02:00
else if (helpers.compareVersion('1.9.1', version)) return '1.9.1'; // > 1.8.3 to <= 1.9.1
else if (helpers.compareVersion('1.11.2', version)) return '1.11.2'; // > 1.9.1 to <= 1.11.2
2020-11-28 17:39:14 +01:00
else if (version === '1.11.3') return '1.11.3'; // = 1.11.3
2020-11-18 06:19:07 +01:00
else return '1.12.4'; // > 1.11.3
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery/2.')) {
2020-11-05 07:07:29 +01:00
return '2.2.4';
} else if (type.startsWith('/jquery/3.') || type.startsWith('/jquery/latest')) {
2021-02-26 19:22:46 +01:00
if (helpers.compareVersion('3.2.1', version)) return '3.2.1'; // <= v3.2.1
2021-03-03 23:04:41 +01:00
else if (helpers.compareVersion('3.5.1', version)) return '3.5.1'; // <= v3.5.1
else return '3.6.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery.devbridge-autocomplete/1.')) {
return '1.4.11';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jqueryui/1.')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('1.8.24', version)) return '1.8.24'; // <= v1.8.24
2021-03-25 06:36:01 +01:00
if (helpers.compareVersion('1.10.0', version)) return '1.10.0'; // > v1.8.24 to <= v1.10.0
2020-11-05 07:07:29 +01:00
else return '1.12.1'; // >= 1.8.19
} else if (type.startsWith('/jquery-ajax-unobtrusive/3.')) {
return '3.2.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery.blockUI/2.')) {
2020-11-05 07:07:29 +01:00
return '2.70';
2021-01-31 06:34:40 +01:00
} else if (type.startsWith('/jquery-cookie/1.')) {
return '1.4.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-csv/1.')) {
return '1.0.21';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-easing/1.')) {
2020-11-05 07:07:29 +01:00
return '1.4.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery.lazyload/1.')) {
2020-11-05 07:07:29 +01:00
return '1.9.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery.lazy/1.')) {
2020-11-05 07:07:29 +01:00
return '1.7.11';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery.matchHeight/0.')) {
2020-11-05 07:07:29 +01:00
return '0.7.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-migrate/1.')) {
2020-11-05 07:07:29 +01:00
return '1.4.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-migrate/3.')) {
return '3.3.2';
} else if (type.startsWith('/jquery-mobile/1.')) {
return '1.4.5';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-mousewheel/3.')) {
2020-11-05 07:07:29 +01:00
return '3.1.13';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jScrollPane/2.')) {
2020-11-05 07:07:29 +01:00
return '2.2.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-validate/1.')) {
return '1.19.3';
2021-02-02 05:50:21 +01:00
} else if (type.startsWith('/jeditable.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.8.0';
2021-02-02 05:50:21 +01:00
} else if (type.startsWith('/jeditable.js/2.')) {
return '2.0.19';
2021-03-17 18:50:41 +01:00
} else if (type.startsWith('/jquery.cycle2/2.')) {
return '2.1.6';
2021-01-31 06:34:15 +01:00
} else if (type.startsWith('/jquery.scrollbar/0.')) {
return '0.2.11';
} else if (type.startsWith('/jquery-validation-unobtrusive/3.')) {
return '3.2.12';
2021-02-02 05:56:41 +01:00
} else if (type.startsWith('/jquery.tablesorter/2.')) {
2020-11-05 07:07:29 +01:00
return '2.31.3';
2021-08-11 06:46:18 +02:00
} else if (type.startsWith('/jquery-timeago/1.')) {
return '1.6.7';
} else if (type.startsWith('/jquery-tiny-pubsub/0.')) {
return '0.7.0';
2021-07-03 06:58:41 +02:00
} else if (type.startsWith('/jquery-ujs/1.')) {
return '1.2.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/jquery-modal/0.')) {
2020-11-05 07:07:29 +01:00
return '0.9.2';
} else if (type.startsWith('/jasny-bootstrap/3.')) {
return '3.1.3';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/jasny-bootstrap/4.')) {
return '4.0.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/js-cookie/2.')) {
2020-11-05 07:07:29 +01:00
return '2.2.1';
2021-01-22 06:35:21 +01:00
} else if (type.startsWith('/knockout/3.')) {
return '3.5.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/lazysizes/4.')) {
2020-11-05 07:07:29 +01:00
return '4.1.8';
2020-11-14 09:31:53 +01:00
} else if (type.startsWith('/lazysizes/5.')) {
return '5.3.2';
2021-04-09 16:36:36 +02:00
} else if (type.startsWith('/leaflet/0.')) {
2021-04-12 06:54:25 +02:00
return '0.7.7';
2021-04-09 16:36:36 +02:00
} else if (type.startsWith('/leaflet/1.')) {
2021-04-12 06:54:25 +02:00
return '1.7.1';
} else if (type.startsWith('/Leaflet.EasyButton/2.')) {
return '2.4.0';
} else if (type.startsWith('/leaflet.featuregroup.subgroup/1.')) {
return '1.0.2';
} else if (type.startsWith('/leaflet.markercluster/1.')) {
return '1.5.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/libphonenumber-js/1.')) {
return '1.9.43';
2021-02-02 05:57:54 +01:00
} else if (type.startsWith('/libsodium-wrappers/0.')) {
2020-11-05 07:07:29 +01:00
return '0.5.4';
2021-03-31 07:04:08 +02:00
} else if (type.startsWith('/lightcase/2.')) {
return '2.5.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/lightgallery/1.')) {
return '1.10.0';
2021-06-13 06:29:48 +02:00
} else if (type.startsWith('/lightgallery/2.')) {
2021-10-29 06:15:43 +02:00
return '2.3.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/lodash.js/3.')) {
2020-11-05 07:07:29 +01:00
return '3.10.1';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/lodash.js/4.')) {
return '4.17.21';
2020-11-09 18:25:23 +01:00
} else if (type.startsWith('/lozad')) {
2020-11-14 09:37:13 +01:00
return '1.16.0';
2020-11-09 18:24:45 +01:00
} else if (type.startsWith('/magnific-popup.js/1.')) {
return '1.1.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/markdown-it/')) {
2021-08-05 05:53:32 +02:00
return '12.2.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/mdbootstrap/4.')) {
2021-08-03 06:16:22 +02:00
return '4.20.0';
} else if (type.startsWith('/material-design-icons/2.')) {
return '2.8.94';
} else if (type.startsWith('/material-design-icons/3.')) {
return '3.9.97';
} else if (type.startsWith('/material-design-icons/4.')) {
return '4.9.95';
} else if (type.startsWith('/material-design-icons/5.')) {
return '5.8.55';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/materialize/0.')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('0.97.8', version)) return '0.97.8'; // <= v0.97.8
return '0.100.2';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/materialize/1.')) {
return '1.0.0';
2021-05-26 06:56:35 +02:00
} else if (type.startsWith('/mathjax/2.') || type.startsWith('/mathjax/latest')) {
return '2.7.5';
2021-01-02 17:21:46 +01:00
} else if (type.startsWith('/mdb-ui-kit/3.')) {
2021-11-25 06:11:01 +01:00
return '3.10.1';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/mobile/1.')) {
return '1.4.5';
2021-02-02 05:58:46 +01:00
} else if (type.startsWith('/Modaal/0.')) {
2020-11-10 16:44:04 +01:00
return '0.4.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/modernizr/2.')) {
2020-11-05 07:07:29 +01:00
return '2.8.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/moment.js/2.')) {
2020-11-05 07:07:29 +01:00
return '2.29.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/mootools/1.')) {
2021-02-28 08:12:04 +01:00
return '1.6.0';
} else if (type.startsWith('/ngx-bootstrap/6.')) {
return '6.2.0';
2021-07-22 05:57:36 +02:00
} else if (type.startsWith('/ngx-bootstrap/7.')) {
2021-09-26 09:01:39 +02:00
return '7.1.2';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/noUiSlider/14.')) {
return '14.7.0';
} else if (type.startsWith('/noUiSlider/15.')) {
2021-10-13 17:34:20 +02:00
return '15.5.0';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/nvd3/1.')) {
return '1.8.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/object-assign@4.')) {
2020-11-05 07:07:29 +01:00
return '4.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/oclazyload/1.')) {
2020-11-05 07:07:29 +01:00
return '1.1.0';
2021-03-03 23:01:41 +01:00
} else if (type.startsWith('/OwlCarousel2/2.')) {
return '2.3.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/owl-carousel/1.')) {
2020-11-05 07:07:29 +01:00
return '1.3.3';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/owl-carousel/2.')) {
return '2.3.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/p2p-media-loader-core') || type.startsWith('/p2p-media-loader-hlsjs')) {
2020-11-05 07:07:29 +01:00
return '0.6.2';
2021-02-02 06:00:37 +01:00
} else if (type.startsWith('/p5.js/0.')) {
2020-12-08 19:46:32 +01:00
return '0.10.2';
2021-06-16 06:04:35 +02:00
} else if (type.startsWith('/p5.js/1.')) {
2021-07-02 06:36:48 +02:00
return '1.4.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/page.js/1.')) {
2020-11-14 09:38:32 +01:00
return '1.11.6';
2020-11-09 18:22:59 +01:00
} else if (type.startsWith('/paginationjs/2.')) {
return '2.1.5';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/plyr/3.')) {
2021-10-13 17:33:02 +02:00
return '3.6.9';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/popper.js/1.')) {
2020-11-05 07:07:29 +01:00
return '1.16.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/popper.js/2.')) {
2021-10-01 05:56:12 +02:00
return '2.10.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/prop-types/15.')) {
2020-11-05 07:07:29 +01:00
return '15.7.2';
2020-11-11 18:20:55 +01:00
} else if (type.startsWith('/protonet-jquery.inview/1.')) {
return '1.1.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/prototype/1.')) {
return '1.7.3';
2021-09-18 08:30:45 +02:00
} else if (type.startsWith('/pure/0.')) {
return '0.6.2';
2021-09-18 08:31:46 +02:00
} else if (type.startsWith('/pure/1.')) {
return '1.0.1';
2021-09-18 08:33:00 +02:00
} else if (type.startsWith('/pure/2.')) {
return '2.0.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/raven.js/3.')) {
return '3.27.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react/16.')) {
return '16.14.0';
2020-11-14 09:42:51 +01:00
} else if (type.startsWith('/react/17.')) {
return '17.0.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react-dom/16.')) {
return '16.14.0';
2020-11-14 09:39:38 +01:00
} else if (type.startsWith('/react-dom/17.')) {
return '17.0.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react-redux/7.')) {
2021-10-27 06:25:09 +02:00
return '7.2.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react-router/5.')) {
2021-08-28 07:06:33 +02:00
return '5.2.1';
2021-11-06 08:21:11 +01:00
} else if (type.startsWith('/react-router/6.')) {
2021-11-13 07:15:25 +01:00
return '6.0.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react-side-effect/')) {
return '2.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/react-lifecycles-compat/')) {
2020-11-05 07:07:29 +01:00
return '3.0.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/redux/4.')) {
2021-10-29 06:17:02 +02:00
return '4.1.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/rickshaw/1.')) {
2020-11-14 09:44:02 +01:00
return '1.7.1';
2021-07-05 18:58:12 +02:00
} else if (type.startsWith('/script.js/2.')) {
return '2.5.9';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/scriptaculous/1.')) {
2020-11-05 07:07:29 +01:00
return '1.9.0';
2021-06-08 07:42:54 +02:00
} else if (type.startsWith('/select2/3.')) {
return '3.5.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/select2/4.')) {
2020-11-05 07:07:29 +01:00
return '4.0.13';
2021-03-31 06:55:00 +02:00
} else if (type.startsWith('/semantic-ui/2.')) {
return '2.4.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/showdown/1.')) {
2020-11-05 07:07:29 +01:00
return '1.9.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/showdown/0.')) {
2020-11-05 07:07:29 +01:00
return '0.5.1';
2021-06-25 06:38:20 +02:00
} else if (type.startsWith('/simplebar/')) {
2021-09-26 08:52:37 +02:00
return '5.3.6';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/simplemde/')) {
2020-11-05 07:07:29 +01:00
return '1.11.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/slick-carousel/1.')) {
2021-08-28 07:13:57 +02:00
if (helpers.compareVersion('1.8.1', version)) return '1.8.1'; // <= v1.8.1
return '1.9.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/slick-lightbox/0.')) {
2020-11-05 07:07:29 +01:00
return '0.2.12';
2021-01-26 06:10:52 +01:00
} else if (type.startsWith('/slider-pro/1.')) {
return '1.6.0';
2021-04-26 07:08:10 +02:00
} else if (type.startsWith('/snowplow/2.')) {
2021-08-25 06:57:49 +02:00
return '2.18.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/socket.io/2.')) {
return '2.4.0';
2020-11-14 09:44:55 +01:00
} else if (type.startsWith('/socket.io/3.')) {
return '3.1.3';
2021-03-11 06:39:40 +01:00
} else if (type.startsWith('/socket.io/4.')) {
2021-11-19 06:40:56 +01:00
return '4.4.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/spin.js/2.')) {
2020-11-05 07:07:29 +01:00
return '2.3.2';
2020-11-14 09:45:53 +01:00
} else if (type.startsWith('/spin.js/3.')) {
return '3.1.0';
} else if (type.startsWith('/spin.js/4.')) {
2021-09-02 05:34:22 +02:00
return '4.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/stickyfill/1.')) {
2020-11-05 07:07:29 +01:00
return '1.1.4';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/stickyfill/2.')) {
2020-11-05 07:07:29 +01:00
return '2.1.0';
2021-06-25 06:35:38 +02:00
} else if (type.startsWith('/sticky-js/')) {
return '1.3.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/store.js/2.')) {
return '2.0.12';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/swfobject/2.')) {
2020-11-05 07:07:29 +01:00
return '2.2';
2021-02-02 05:55:27 +01:00
} else if (type.startsWith('/Swiper/3.')) {
2020-11-05 07:07:29 +01:00
return '3.4.2';
2021-02-02 05:55:27 +01:00
} else if (type.startsWith('/Swiper/4.')) {
2020-11-05 07:07:29 +01:00
return '4.5.1';
2021-02-02 05:55:27 +01:00
} else if (type.startsWith('/Swiper/5.')) {
2020-11-05 07:07:29 +01:00
return '5.4.5';
2021-08-26 06:47:22 +02:00
} else if (type.startsWith('/Swiper/6.')) {
2021-08-25 06:53:00 +02:00
return '6.8.4';
2021-08-26 06:47:22 +02:00
} else if (type.startsWith('/Swiper/7.') || type.startsWith('/Swiper/')) {
2021-11-25 06:12:08 +01:00
return '7.3.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/tether/1.')) {
2020-11-05 07:07:29 +01:00
return '1.4.7';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/tooltipster/3.')) {
2020-11-05 07:07:29 +01:00
return '3.3.0';
2020-11-14 09:47:46 +01:00
} else if (type.startsWith('/tooltipster/4.')) {
return '4.2.8';
} else if (type.startsWith('/toastr.js/2.') || type.startsWith('/toastr.js/latest/')) {
2020-11-05 07:07:29 +01:00
return '2.1.4';
2021-05-20 06:12:04 +02:00
} else if (type.startsWith('/twitter-bootstrap/2.')) {
return '2.3.2';
} else if (type.startsWith('/twitter-bootstrap/3.')) {
if (helpers.compareVersion('3.0.0', version)) return '3.0.0'; // <= 3.0.0
else if (helpers.compareVersion('3.3.7', version)) return '3.3.7'; // <= 3.3.7
else return '3.4.1';
} else if (type.startsWith('/twitter-bootstrap/4.')) {
return '4.6.1';
2021-05-20 06:12:04 +02:00
} else if (type.startsWith('/twitter-bootstrap/5.')) {
return '5.1.3';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/underscore.js/1.')) {
return '1.13.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/urlive/1.')) {
2020-11-05 07:07:29 +01:00
return '1.1.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/vanilla-lazyload')) {
return '17.5.0';
2021-09-18 08:36:44 +02:00
} else if (type.startsWith('/vex-js/3.')) {
return '3.1.1';
2021-09-18 08:37:05 +02:00
} else if (type.startsWith('/vex-js/4.')) {
return '4.1.0';
} else if (type.startsWith('/videojs-seek-buttons/1.')) {
2020-11-05 07:07:29 +01:00
return '1.6.0';
} else if (type.startsWith('/videojs-seek-buttons/2.')) {
return '2.2.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/video.js/')) {
2020-11-05 07:07:29 +01:00
if (helpers.compareVersion('5.20.5', version)) return '5.20.5'; // <= 5.20.5
else if (helpers.compareVersion('6.13.0', version)) return '6.13.0'; // > 5.20.5 to <= 6.13.0
2021-11-19 06:18:09 +01:00
else return '7.17.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/vue/1.')) {
2020-11-05 07:07:29 +01:00
return '1.0.28';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/vue/2.')) {
2021-06-09 06:44:00 +02:00
return '2.6.14';
2021-02-01 06:23:18 +01:00
} else if (type.startsWith('/vue/3.')) {
2021-11-27 06:20:20 +01:00
return '3.2.23';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/vue-i18n/8.')) {
2021-11-03 05:42:11 +01:00
return '8.26.7';
2021-02-28 08:25:44 +01:00
} else if (type.startsWith('/vue-i18n/9.')) {
2021-10-09 11:50:31 +02:00
return '9.1.9';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/vue-resource/1.')) {
return '1.5.3';
2021-06-25 06:33:02 +02:00
} else if (type.startsWith('/vuex/3.')) {
return '3.6.2';
} else if (type.startsWith('/vuex/4.')) {
return '4.0.2';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/waypoints/4.')) {
2020-11-05 07:07:29 +01:00
return '4.0.1';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/webfont')) {
2020-11-05 07:07:29 +01:00
return '1.6.28';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/webrtc-adapter/6.')) {
2020-11-05 07:07:29 +01:00
return '6.4.8';
2020-11-14 09:52:21 +01:00
} else if (type.startsWith('/webrtc-adapter/7.')) {
return '7.7.1';
2021-06-10 09:19:57 +02:00
} else if (type.startsWith('/webrtc-adapter/8.')) {
return '8.1.0';
2020-11-07 08:21:14 +01:00
} else if (type.startsWith('/wow/1.')) {
2020-11-05 07:07:29 +01:00
return '1.1.2';
} else if (version === null) {
return 'latest';
}
return false;
};
targets.determineResourceName = function (filename) {
2021-02-17 07:01:08 +01:00
// eslint-disable-next-line no-use-before-define
2020-11-05 07:07:29 +01:00
return ListOfFiles[filename] || 'Unknown';
};
const ListOfFiles = {
2021-11-08 06:11:38 +01:00
'fork-awesome.min.css': 'Fork Awesome',
2021-09-19 09:16:02 +02:00
'foundation-icons.min.css': 'Foundation Icon Fonts',
2021-08-11 06:46:18 +02:00
'jquery.timeago.min.jsm': 'jquery-timeago',
2021-08-11 06:45:48 +02:00
'jquery.fittext.min.jsm': 'FitText.js',
2021-08-03 06:29:17 +02:00
'aos.css': 'aos (CSS)',
'aos.jsm': 'aos (JS)',
2021-07-30 21:00:21 +02:00
'exif.min.jsm': 'Exif.js',
2021-07-20 06:32:55 +02:00
'bootstrap-icons.min.css': 'Bootstrap Icons',
2021-07-07 07:07:41 +02:00
'clappr.min.jsm': 'clappr',
2021-07-05 19:04:43 +02:00
'script.min.jsm': 'script.js',
2021-07-03 06:58:41 +02:00
'rails.min.jsm': 'jquery-ujs',
2021-07-03 06:42:24 +02:00
'algolia-min.css': 'InstantSearch.css',
2021-06-25 06:38:20 +02:00
'simplebar.min.css': 'simplebar (CSS)',
'simplebar.min.jsm': 'simplebar (JS)',
2021-06-25 06:35:38 +02:00
'sticky.min.jsm': 'sticky-js',
'jquery.unobtrusive-ajax.min.jsm': 'jQuery Unobtrusive Ajax',
2021-06-25 06:33:02 +02:00
'vuex.min.jsm': 'vuex',
2021-06-10 09:22:13 +02:00
'alpine.jsm': 'alpinejs',
'ba-tiny-pubsub.min.jsm': 'jQuery Tiny Pub/Sub',
2021-06-08 08:00:23 +02:00
'fastclick.min.jsm': 'FastClick',
'bodymovin.min.jsm': 'bodymovin/lottie',
2021-05-06 06:39:17 +02:00
'jquery.bxslider.min.jsm': 'bxslider (JS)',
'jquery.bxslider.min.css': 'bxslider (CSS)',
'easy-button.min.jsm': 'Leaflet.EasyButton',
'leaflet.featuregroup.subgroup.jsm': 'Leaflet.FeatureGroup.SubGroup',
'leaflet.markercluster.jsm': 'leaflet.markercluster',
2021-05-01 06:23:14 +02:00
'embedly-player.min.jsm': 'embedly player',
'bs-datepicker.css': 'Datepicker (ngx-bootstrap)',
2021-04-26 07:08:10 +02:00
'sp.min.jsm': 'Snowplow',
2021-04-24 06:31:19 +02:00
'appboy.min.jsm': 'Appboy/Braze Web SDK',
'MaterialIcons.woff2': 'Google Material Icons',
'font-awesome': 'Font Awesome',
2021-04-12 06:54:25 +02:00
'leaflet.jsm': 'leaflet (JS)',
'leaflet.css': 'leaflet (CSS)',
2021-04-02 07:06:36 +02:00
'bluebird.min.jsm': 'bluebird',
2021-04-02 07:04:06 +02:00
'feather.min.jsm': 'Feather Icons',
2021-04-01 07:02:57 +02:00
'babel.min.jsm': 'Babel standalone',
2021-03-31 07:08:37 +02:00
'anime.min.jsm': 'animejs',
2021-03-31 07:04:08 +02:00
'lightcase.min.jsm': 'lightcase (JS)',
'lightcase.min.css': 'lightcase (CSS)',
'jasny-bootstrap.min.css': 'Jasny Bootstrap (JS)',
'jasny-bootstrap.min.jsm': 'Jasny Bootstrap (CSS)',
2021-03-05 06:54:43 +01:00
'bulma.min.css': 'Bulma',
2021-02-19 07:20:50 +01:00
'hogan.min.jsm': 'hogan.js',
'highlight.min.jsm': 'highlight.js (Bundle)',
2021-01-31 06:34:40 +01:00
'jquery.cookie.min.jsm': 'jquery-cookie',
2021-01-31 06:34:15 +01:00
'jquery.scrollbar.min.jsm': 'jQuery Scrollbar',
2021-01-31 06:33:28 +01:00
'dayjs.min.jsm': 'Day.js',
'jquery.validate.unobtrusive.min.jsm': 'jQuery Validate Unobtrusive',
2021-02-16 07:05:20 +01:00
'jquery.sliderPro.min.jsm': 'Slider Pro (JS)',
2021-01-22 06:35:21 +01:00
'knockout-latest.min.jsm': 'Knockout',
'bootstrap-multiselect.min.jsm': 'Bootstrap Multiselect',
'ajax-bootstrap-select.min.jsm': 'Ajax Bootstrap Select',
2021-01-22 06:28:18 +01:00
'bootstrap-vue.min.jsm': 'BootstrapVue (JS)',
'bootstrap-vue.min.css': 'BootstrapVue (CSS)',
2021-04-29 06:29:12 +02:00
'bowser.min.jsm': 'Bowser',
'mirage2.min.jsm': 'mirage2',
2021-01-04 07:27:48 +01:00
'chosen.jquery.min.jsm': 'chosen',
2021-01-04 07:27:21 +01:00
'nouislider.min.jsm': 'noUiSlider (JS)',
2021-01-02 17:21:46 +01:00
'mdb-ui-kit.min.jsm': 'MDB UI Kit (JS)',
'mdb-ui-kit.min.css': 'MDB UI Kit (CSS)',
2020-12-29 17:39:19 +01:00
'docsearch.min.jsm': 'docsearch.js (JS)',
'docsearch.min.css': 'docsearch.js (CSS)',
2020-12-24 10:27:05 +01:00
'blazy.min.jsm': 'blazy',
'materialdesignicons.min.css': 'MaterialDesign',
2020-12-07 18:58:20 +01:00
'dexie.min.jsm': 'dexie',
2020-12-07 18:57:26 +01:00
'p5.min.jsm': 'p5.js',
'p5.sound.min.jsm': 'p5.js (Sound)',
2020-11-11 18:20:55 +01:00
'jquery.inview.min.jsm': 'inview (Protonet)',
2020-11-10 16:44:04 +01:00
'modaal.min.jsm': 'Modaal (JS)',
'modaal.min.css': 'Modaal (CSS)',
2020-11-14 18:25:04 +01:00
'jquery.magnific-popup.min.jsm': 'magnific-popup.js (JS)',
2020-11-14 18:22:35 +01:00
'magnific-popup.min.css': 'magnific-popup.js (CSS)',
2020-11-09 18:22:59 +01:00
'pagination.min.css': 'Pagination.js (CSS)',
'pagination.min.jsm': 'Pagination.js (JS)',
2020-11-05 13:44:21 +01:00
'bootstrap-table.min.jsm': 'Bootstrap Table (JS)',
'bootstrap-table.min.css': 'Bootstrap Table (CSS)',
2020-11-05 07:07:29 +01:00
'jquery.matchHeight-min.jsm': 'jquery.matchHeight.js',
2020-11-09 06:19:29 +01:00
'iscroll.min.jsm': 'iScroll',
2020-11-05 07:07:29 +01:00
'drawer.min.jsm': 'Drawer (JS)',
'drawer.min.css': 'Drawer (CSS)',
'lightgallery-all.min.jsm': 'lightGallery (JS)',
'lightgallery.min.css': 'lightGallery (CSS)',
'sodium.min.jsm': 'libsodium.js',
'polyfill.min.jsm': 'Babel Polyfill',
'video-js.min.css': 'Video.js (CSS)',
'video.min.jsm': 'Video.js (JS)',
'cookieconsent.min.css': 'Cookie Consent (CSS)',
'cookieconsent.min.jsm': 'Cookie Consent (JS)',
'markdown-it.min.jsm': 'markdown-it',
'vue-i18n.min.jsm': 'Vue.js (i18n)',
'v4-shims.min.css': 'Font Awesome (Shim)',
2020-11-05 07:07:29 +01:00
'instantsearch.production.min.jsm': 'InstantSearch.js',
'redux.min.jsm': 'Redux',
'react-side-effect.min.jsm': 'react-side-effect',
'react-router.min.jsm': 'react router',
'react-redux.min.jsm': 'react redux',
'react-lifecycles-compat.min.jsm': 'react lifecycles compat',
'prop-types.min.jsm': 'prop-types',
'history.min.jsm': 'history',
'axios.min.jsm': 'Axios',
'object-assign.min.jsm': 'Object assign',
'slick-lightbox.css': 'slick-lightbox CSS',
'slick-lightbox.min.jsm': 'slick-lightbox JS',
'noframework.waypoints.min.jsm': 'Waypoints (Bundle)',
'jquery.waypoints.min.jsm': 'Waypoints (Bundle)',
'waypoints.debug.jsm': 'Waypoints (Bundle)',
'zepto.waypoints.min.jsm': 'Waypoints (Bundle)',
'shortcuts/infinite.min.jsm': 'Waypoints (Bundle)',
'shortcuts/inview.min.jsm': 'Waypoints (Bundle)',
'shortcuts/sticky.min.jsm': 'Waypoints (Bundle)',
'anchor.min.jsm': 'AnchorJS',
'jquery.easing.min.jsm': 'jQuery Easing Plugin',
'baguetteBox.min.jsm': 'baguetteBox.js (JS)',
'baguetteBox.min.css': 'baguetteBox.js (CSS)',
'videojs-seek-buttons.min.css': 'Videojs seek buttons (CSS)',
'videojs-seek-buttons.min.jsm': 'Videojs seek buttons (JS)',
'p2p-media-loader-hlsjs.min.jsm': 'P2P Media Loader Hls.js',
'bootstrap-toggle.min.jsm': 'Bootstrap Toggle (JS)',
'bootstrap2-toggle.min.jsm': 'Bootstrap2 Toggle (JS)',
'bootstrap-toggle.min.css': 'Bootstrap Toggle (CSS)',
'bootstrap2-toggle.min.css': 'Bootstrap2 Toggle (CSS)',
'vue-resource.min.jsm': 'vue-resource',
'jquery.lazy.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.plugins.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.ajax.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.av.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.iframe.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.noop.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.picture.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.script.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.vimeo.min.jsm': 'jQuery Lazy (Bundle)',
'jquery.lazy.youtube.min.jsm': 'jQuery Lazy (Bundle)',
'fa-loader.jsm': 'Font Awesome CSS (WFL)',
'fa-loader.css': 'Font Awesome JS (WFL)',
'jquery.tooltipster.min.jsm': 'Tooltipster',
'jquery.jscrollpane.min.jsm': 'jScrollPane',
'stickyfill.min.jsm': 'Stickyfill',
'jquery.mousewheel.min.jsm': 'jQuery Mousewheel',
'a1f20be65b.css': 'Font Awesome (CSS)',
'a1f20be65b.jsm': 'Font Awesome (JS)',
'owl.transitions.min.css': 'OwlCarousel (CSS Transitions)',
'owl.theme.min.css': 'OwlCarousel (CSS Theme)',
'owl.carousel.min.css': 'OwlCarousel (CSS)',
'owl.carousel.min.jsm': 'OwlCarousel (JS)',
'bootstrap-datepicker3.standalone.min.css': 'Bootstrap Datepicker 3 (CSS)',
'jets.min.jsm': 'Jets.js',
'lazyload.min.jsm': 'Vanilla Lazyload',
'materialize.min.jsm': 'Materialize (JS)',
'materialize.min.css': 'Materialize (CSS)',
'slick.min.jsm': 'slick (JS)',
'slick.min.css': 'slick (CSS)',
2020-12-07 18:59:36 +01:00
'slick-theme.min.css': 'slick (Theme)',
2020-11-05 07:07:29 +01:00
'google-material-design-icons.css': 'Google Material Icons',
'Chart.bundle.min.jsm': 'Chart.js (JS)',
'Chart.min.css': 'Chart.js (CSS)',
'bootbox.min.jsm': 'BootboxJS',
'bootstrap3-typeahead.min.jsm': 'Bootstrap 3 Typeahead',
'libphonenumber-js.min.jsm': 'libphonenumber-js',
'showdown.min.jsm': 'Showdown',
'angular-ui-utils.min.jsm': 'Angular UI Utils',
'bootstrap-colorpicker-module.min.jsm': 'Angular Bootstrap Colorpicker (JS)',
'colorpicker.min.css': 'Angular Bootstrap Colorpicker (CSS)',
'ethjs.min.jsm': 'ethjs',
'adapter.min.jsm': 'WebRTC adapter',
'algoliasearch.min.jsm': 'AlgoliaSearch',
'algoliasearch3.33.0_algoliasearchLite_algoliasearchHelper.jsm': 'jsDelivr combined',
'all.min.css': 'Font Awesome (CSS)',
'all.min.jsm': 'Font Awesome (JS)',
'angucomplete-alt.min.jsm': 'AngulComplete',
'angular-animate.min.jsm': 'AngularJS Animate',
'angular-aria.min.jsm': 'AngularJS Aria',
'angular-cookies.min.jsm': 'AngularJS Cookies',
'angular-loader.min.jsm': 'AngularJS Loader',
'angular-material.min.css': 'AngularJS Material Design',
'angular-material.min.jsm': 'AngularJS Material Design',
'angular-message-format.min.jsm': 'AngularJS Message Format',
'angular-messages.min.jsm': 'AngularJS Messages',
'angular-parse-ext.min.jsm': 'AngularJS ParseExt',
'angular-payments.jsm': 'Angular Payments',
'angular-resource.min.jsm': 'AngularJS Resource',
'angular-route.min.jsm': 'AngularJS Route',
'angular-sanitize.min.jsm': 'AngularJS Sanitize',
'angular-stripe-checkout.min.jsm': 'Angular Stripe Checkout',
2020-11-05 07:07:29 +01:00
'angular-touch.min.jsm': 'AngularJS Touch',
'angular-ui-router.min.jsm': 'Angular UI Router',
'angular.min.jsm': 'Angular (JS)',
'animate.min.css': 'Animate (CSS)',
'autocomplete.min.jsm': 'autocomplete.js',
'backbone-min.jsm': 'Backbone.js',
'bootstrap-datepicker.min.jsm': 'Bootstrap Datepicker (JS)',
'bootstrap-datepicker.standalone.min.css': 'Bootstrap Datepicker (CSS)',
'bootstrap-select.min.css': 'Bootstrap-select (CSS)',
'bootstrap-select.min.jsm': 'Bootstrap-select (JS)',
'bootstrap-slider.min.css': 'bootstrap-slider (CSS)',
'bootstrap-slider.min.jsm': 'bootstrap-slider (JS)',
'bootstrap.min.css': 'Bootstrap (CSS)',
'bootstrap.min.jsm': 'Bootstrap (JS)',
'clipboard.min.jsm': 'clipboard.js',
'd3-legend.min.jsm': 'D3.js Legend',
'd3.min.jsm': 'D3.js',
'daterangepicker.min.jsm': 'Bootstrap Daterangepicker',
'dojo.jsm': 'Dojo',
'ember.min.jsm': 'Ember.js',
'ext-core.jsm': 'Ext Core',
'flv.min.jsm': 'flv.js',
'font-awesome.min.css': 'Font Awesome',
'hls.min.jsm': 'hls.js',
'jquery-migrate.min.jsm': 'jQuery Migrate',
'jquery-ui.min.css': 'jQuery UI Themes',
'jquery-ui.min.jsm': 'jQuery UI',
'jquery.autocomplete.min.jsm': 'jQuery Ajax AutoComplete',
'jquery.blockUI.min.jsm': 'jQuery Block UI',
'jquery.csv.min.jsm': 'jQuery-csv',
'jquery.fancybox-media.jsm': 'fancyBox Media (JS)',
'jquery.fancybox.min.css': 'fancyBox (CSS)',
'jquery.fancybox.min.jsm': 'fancyBox (JS)',
'jquery.jeditable.min.jsm': 'jQuery Validation Plugin',
'jquery.lazyload.min.jsm': 'jQuery Lazy Load',
'jquery.min.jsm': 'jQuery',
'jquery.mobile.min.jsm': 'jQuery Mobile',
'jquery.modal.min.css': 'jQuery Modal',
'jquery.modal.min.jsm': 'jQuery Modal',
'jquery.tablesorter.min.jsm': 'jQuery Tablesorter',
'jquery.urlive.min.jsm': 'jQuery URLive',
'jquery.validate.min.jsm': 'jQuery jeditable',
'js.cookie.min.jsm': 'JavaScript Cookie',
'jsdelivr-combine-jquery-hogan-algoliasearch-autocomplete.jsm': 'jsDelivr combined',
'lazysizes.min.jsm': 'lazysizes',
'lodash.min.jsm': 'Lodash',
'lozad.min.jsm': 'lozad.js',
'mdb.min.css': 'MDBootstrap (CSS)',
'mdb.min.jsm': 'MDBootstrap (JS)',
'modernizr.min.jsm': 'Modernizr',
'moment-with-locales.min.jsm': 'Moment.js',
'mootools-yui-compressed.jsm': 'MooTools',
'nv.d3.min.css': 'NVD3 (CSS)',
'nv.d3.min.jsm': 'NVD3 (JS)',
'ocLazyLoad.min.jsm': 'ocLazyLoad',
'p2p-media-loader-core.min.jsm': 'P2P Media Loader Core',
'page.min.jsm': 'page.js',
'plyr.min.css': 'plyr (CSS)',
2020-11-08 12:12:07 +01:00
'plyr.min.jsm': 'plyr (JS)',
2020-11-08 20:11:29 +01:00
'plyr.svg': 'plyr (SVG)',
2020-11-05 07:07:29 +01:00
'popper.min.jsm': 'Popper',
'prototype.min.jsm': 'Prototype',
2021-04-16 06:44:15 +02:00
'prototype.jsm': 'Prototype',
2020-11-05 07:07:29 +01:00
'raven.min.jsm': 'Raven.js',
'react-dom.production.min.jsm': 'ReactDOM',
'react.production.min.jsm': 'React',
'rickshaw.min.css': 'rickshaw (CSS)',
'rickshaw.min.jsm': 'rickshaw (JS)',
'rocket-loader.min.jsm': 'Rocket Loader',
'rzslider.min.jsm': 'AngularJS slider',
'scriptaculous.jsm': 'Scriptaculous',
'select.min.jsm': 'AngularJS ui-select',
'select2.full.min.jsm': 'Select2 (JS)',
'select2.min.css': 'Select2 (CSS)',
'simplemde.min.css': 'simplemde (CSS)',
'simplemde.min.jsm': 'simplemde (JS)',
2021-01-05 06:34:16 +01:00
'socket.io.min.jsm': 'Socket.IO',
2020-11-05 07:07:29 +01:00
'spin.min.jsm': 'spin.js',
'store.legacy.min.jsm': 'Store.js',
'swfobject.jsm': 'SWFObject',
'swiper.min.css': 'Swiper (CSS)',
'swiper.min.jsm': 'Swiper (JS)',
'tether.min.jsm': 'Tether (JS)',
'toaster.min.css': 'AngularJS Toaster (CSS)',
'toaster.min.jsm': 'AngularJS Toaster (JS)',
'toastr.min.css': 'toastr.js',
'toastr.min.jsm': 'toastr.js',
'ui-bootstrap-tpls.min.jsm': 'Angular UI Bootstrap',
'ui-bootstrap.min.jsm': 'Angular UI Bootstrap',
'underscore-min.jsm': 'Underscore.js',
'urlize.jsm': 'urlize',
'vue.min.jsm': 'Vue.js',
'webcomponents-loader.min.jsm': 'WebComponents Loader (JS)',
2020-11-05 07:07:29 +01:00
'webfontloader.jsm': 'Web Font Loader',
'wow.min.jsm': 'WOW'
};