74 lines
2.7 KiB
JavaScript
74 lines
2.7 KiB
JavaScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* global require, module */
|
|
var Funnel = require("broccoli-funnel");
|
|
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
|
|
module.exports = function(defaults) {
|
|
var isProd = EmberApp.env() === 'production';
|
|
var app = new EmberApp(defaults, {
|
|
storeConfigInMeta: false,
|
|
minifyCSS: {
|
|
enabled: isProd
|
|
},
|
|
minifyJS: {
|
|
// Will be minified by wro4j-maven-plugin for performance
|
|
enabled: false,
|
|
},
|
|
fingerprint: {
|
|
enabled: false
|
|
},
|
|
sourcemaps: {
|
|
enabled: !isProd
|
|
}
|
|
});
|
|
|
|
app.import("bower_components/datatables/media/css/jquery.dataTables.min.css");
|
|
app.import("bower_components/datatables/media/js/jquery.dataTables.min.js");
|
|
app.import("bower_components/momentjs/min/moment.min.js");
|
|
app.import("bower_components/select2/dist/css/select2.min.css");
|
|
app.import("bower_components/select2/dist/js/select2.min.js");
|
|
app.import('bower_components/jquery-ui/jquery-ui.js');
|
|
app.import('bower_components/more-js/dist/more.js');
|
|
app.import('bower_components/bootstrap/dist/css/bootstrap.css');
|
|
app.import('bower_components/bootstrap/dist/css/bootstrap-theme.css');
|
|
app.import('bower_components/bootstrap/dist/js/bootstrap.min.js');
|
|
app.import('bower_components/alasql/dist/alasql.js');
|
|
|
|
// Use `app.import` to add additional libraries to the generated
|
|
// output files.
|
|
//
|
|
// If you need to use different assets in different
|
|
// environments, specify an object as the first parameter. That
|
|
// object's keys should be the environment name and the values
|
|
// should be the asset to use in that environment.
|
|
//
|
|
// If the library that you are including contains AMD or ES6
|
|
// modules that you would like to import into your application
|
|
// please specify an object with the list of modules as keys
|
|
// along with the exports of each module as its value.
|
|
var extraAssets = new Funnel('config', {
|
|
srcDir: '/',
|
|
include: ['*.env'],
|
|
destDir: '/config'
|
|
});
|
|
|
|
return app.toTree(extraAssets);
|
|
};
|