only build parts of jquery-ui that we need (#100)

This commit is contained in:
Austin Burdine 2016-06-30 07:42:00 -06:00 committed by Kevin Ansfield
parent f53c7dfc88
commit 93105d5cce

View File

@ -85,7 +85,15 @@ module.exports = function (defaults) {
app.import('bower_components/showdown-ghost/src/extensions/highlight.js');
app.import('bower_components/keymaster/keymaster.js');
app.import('bower_components/devicejs/lib/device.js');
app.import('bower_components/jquery-ui/jquery-ui.js');
// jquery-ui partial build
app.import('bower_components/jquery-ui/ui/core.js');
app.import('bower_components/jquery-ui/ui/widget.js');
app.import('bower_components/jquery-ui/ui/mouse.js');
app.import('bower_components/jquery-ui/ui/draggable.js');
app.import('bower_components/jquery-ui/ui/droppable.js');
app.import('bower_components/jquery-ui/ui/sortable.js');
app.import('bower_components/jquery-file-upload/js/jquery.fileupload.js');
app.import('bower_components/blueimp-load-image/js/load-image.all.min.js');
app.import('bower_components/jquery-file-upload/js/jquery.fileupload-process.js');