From dd67f18658883749c35c2036189c3fff395441a1 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 18 Jan 2016 22:47:14 +0000 Subject: [PATCH] Compress jquery a little --- scripts/build-js.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-js.sh b/scripts/build-js.sh index f67aeea..a26564a 100755 --- a/scripts/build-js.sh +++ b/scripts/build-js.sh @@ -32,7 +32,7 @@ then uglifyjs node_modules/jquery/dist/jquery.js --compress --screw-ie8 --define --stats --keep-fnames -o static/build/js/jquery.js else echo ">> Building jQuery..." - cp node_modules/jquery/dist/jquery.js static/build/js/jquery.js + uglifyjs node_modules/jquery/dist/jquery.js --screw-ie8 --stats --keep-fnames -o static/build/js/jquery.js fi