114 lines
3.4 KiB
JavaScript
114 lines
3.4 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.13.13/ember.min.jsm': true,
|
|
'resources/ember.js/2.18.2/ember.min.jsm': true,
|
|
'resources/ember.js/3.12.3/ember.min.jsm': true,
|
|
|
|
// Ext Core
|
|
'resources/ext-core/3.1.0/ext-core.jsm': true,
|
|
|
|
// Finify bundle
|
|
'resources/findify-bundle/6.9.15/bundle.js': true,
|
|
'resources/findify-bundle/6.9.15/components.js': true,
|
|
'resources/findify-bundle/6.9.15/config.js': true,
|
|
'resources/findify-bundle/6.9.15/initializer.js': true,
|
|
'resources/findify-bundle/6.9.15/polyfill.js': true,
|
|
'resources/findify-bundle/6.9.15/vendors~components~initializer.js': true,
|
|
'resources/findify-bundle/6.9.15/vendors~initializer.js': true,
|
|
'resources/findify-bundle/6.9.15/vendors~sentry.js': 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.8.3/jquery.min.jsm': true,
|
|
'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,
|
|
|
|
// lozad.js
|
|
'resources/lozad.js/1.14.0/lozad': true,
|
|
|
|
// Modernizr
|
|
'resources/modernizr/2.8.3/modernizr.min.jsm': true,
|
|
|
|
// Moment.js
|
|
'resources/moment.js/2.24.0/moment.min.jsm': true,
|
|
|
|
// MooTools
|
|
'resources/mootools/1.6.0/mootools-core.min.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.6.28/webfont.jsm': true
|
|
},
|
|
|
|
// Files [Staging]
|
|
[Environment.STAGING]: {
|
|
|
|
}
|
|
};
|