mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2024-12-14 04:14:06 +01:00
98 lines
2.7 KiB
JavaScript
98 lines
2.7 KiB
JavaScript
/**
|
|
* Files
|
|
* Belongs to Decentraleyes.
|
|
*
|
|
* @author Thomas Rientjes
|
|
* @since 2014-07-24
|
|
* @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';
|
|
|
|
/**
|
|
* Files
|
|
*/
|
|
|
|
var files = {
|
|
|
|
// Files [Stable]
|
|
[Environment.STABLE]: {
|
|
|
|
// AngularJS
|
|
'resources/angularjs/1.7.9/angular.min.jsm': true,
|
|
'resources/angularjs/1.7.9/angular-animated.min.jsm': true,
|
|
'resources/angularjs/1.7.9/angular-sanitize.min.jsm': true,
|
|
'resources/angularjs/1.7.9/angular-cookies.min.jsm': true,
|
|
'resources/angularjs/1.7.9/angular-touch.min.jsm': true,
|
|
|
|
// Backbone.js
|
|
'resources/backbone.js/0.9.10/backbone-min.jsm': true,
|
|
'resources/backbone.js/1.4.0/backbone-min.jsm': true,
|
|
|
|
// Bootstrap.js
|
|
'resources/bootstrap.js/3.3.7/bootstrap.min.js': true,
|
|
'resources/bootstrap.js/4.4.1/bootstrap.min.js': true,
|
|
|
|
// Bootstrap.css
|
|
'resources/bootstrap.css/3.3.7/bootstrap.min.css': true,
|
|
'resources/bootstrap.css/4.4.1/bootstrap.min.css': true,
|
|
|
|
// bootstrap-slider
|
|
'resources/bootstrap-slider/10.6.2/bootstrap-slider.min.css': true,
|
|
|
|
// Dojo
|
|
'resources/dojo/1.14.1/dojo/dojo.jsm': true,
|
|
|
|
// Ember.js
|
|
'resources/ember.js/1.5.1/ember.min.jsm': true,
|
|
'resources/ember.js/2.1.0/ember.min.jsm': true,
|
|
|
|
// Ext Core
|
|
'resources/ext-core/3.1.0/ext-core.jsm': true,
|
|
|
|
// Font Awesome
|
|
'resources/fontawesome/4.7.0/css/font-awesome.min.css': true,
|
|
'resources/fontawesome/5.7.2/css/all.css': true,
|
|
|
|
// jQuery
|
|
'resources/jquery/1.12.4/jquery.min.jsm': true,
|
|
'resources/jquery/2.2.4/jquery.min.jsm': true,
|
|
'resources/jquery/3.4.1/jquery.min.jsm': true,
|
|
|
|
// jQuery UI
|
|
'resources/jqueryui/1.11.4/jquery-ui.min.jsm': true,
|
|
|
|
// Modernizr
|
|
'resources/modernizr/2.8.3/modernizr.min.jsm': true,
|
|
|
|
// Moment.js
|
|
|
|
// MooTools
|
|
'resources/mootools/1.5.1/mootools-yui-compressed.jsm': true,
|
|
|
|
// Prototype
|
|
'resources/prototype/1.7.3.0/prototype.jsm': true,
|
|
|
|
// Scriptaculous
|
|
'resources/scriptaculous/1.9.0/scriptaculous.jsm': true,
|
|
|
|
// SWFObject
|
|
'resources/swfobject/2.2/swfobject.jsm': true,
|
|
|
|
// Underscore.js
|
|
'resources/underscore.js/1.8.3/underscore-min.jsm': true,
|
|
|
|
// Web Font Loader
|
|
'resources/webfont/1.5.18/webfont.jsm': true
|
|
},
|
|
|
|
// Files [Staging]
|
|
[Environment.STAGING]: {
|
|
|
|
}
|
|
};
|