summaryrefslogtreecommitdiff
path: root/web-ui/config
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@riseup.net>2015-12-28 10:34:25 -0200
committerBruno Wagner <bwagner@riseup.net>2015-12-28 10:34:25 -0200
commite7d29d761a76f41f8736900d055d9b5fbf8a821b (patch)
treeda7af41e5c4c53c7e5480cc8573faf1165bf3ec1 /web-ui/config
parent311d7fb96f6e1d4850d60078b5f9b276e5b8d9bd (diff)
Added file upload dependencies to build
They weren't being minified with the rest of the JS, so I added them to the packaging and the UI should be correct inside docker
Diffstat (limited to 'web-ui/config')
-rw-r--r--web-ui/config/package.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/web-ui/config/package.sh b/web-ui/config/package.sh
index 2ba5e1a0..9b6bc66c 100644
--- a/web-ui/config/package.sh
+++ b/web-ui/config/package.sh
@@ -34,7 +34,7 @@ mkdir -p dist
# copy files
cd app
-cp --parents 404.html fonts/* locales/**/* bower_components/font-awesome/css/font-awesome.min.css bower_components/font-awesome/fonts/* ../dist
+cp --parents 404.html fonts/* locales/**/* bower_components/font-awesome/css/font-awesome.min.css bower_components/jquery-file-upload/css/jquery.fileupload.css bower_components/font-awesome/fonts/* ../dist
cd -
# concat js files and minify
@@ -42,6 +42,8 @@ cat \
app/bower_components/modernizr/modernizr.js \
app/bower_components/lodash/dist/lodash.js \
app/bower_components/jquery/dist/jquery.js \
+app/bower_components/jquery-ui/jquery-ui.min.js \
+app/bower_components/jquery-file-upload/js/jquery.fileupload.js \
app/js/lib/highlightRegex.js \
app/bower_components/handlebars/handlebars.min.js \
app/bower_components/typeahead.js/dist/typeahead.bundle.min.js \