From: Wolfram Schneider Date: Thu, 13 Nov 2014 16:47:41 +0000 (+0000) Subject: replace yui-compressor with a JS based solution, MKWS-337 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=6c7da57c7a831e783965f51bf850996274ce76ed replace yui-compressor with a JS based solution, MKWS-337 --- diff --git a/doc/mkws-developer.markdown b/doc/mkws-developer.markdown index 3832c54..d944a6e 100644 --- a/doc/mkws-developer.markdown +++ b/doc/mkws-developer.markdown @@ -22,7 +22,7 @@ If you are building the widget set, you will need the following Debian packages (or their equivalents on your operating system): $ sudo apt-get install curl git make unzip apache2 \ - pandoc yui-compressor libbsd-resource-perl + pandoc libbsd-resource-perl You also need Node.js, but unfortunately the `node-js` package is not available for Debian wheezy. You can either get it from diff --git a/src/Makefile b/src/Makefile index bed0fb1..6524a0f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,6 +14,7 @@ PP2_URL = http://git.indexdata.com/?p=pazpar2.git;a=blob_plain;f=js/${PP2_FILE}; VERSION = $(shell tr -d '\012' < VERSION) HANDLEBARS = ../test/node_modules/.bin/handlebars +UGLIFYJS = ../test/node_modules/.bin/uglifyjs COMPONENTS = mkws-handlebars.js \ mkws-core.js \ @@ -58,7 +59,7 @@ $(DEST)/mkws-complete.js: Makefile $(INSTALLED_DOWNLOADABLE) $(DEST)/mkws.js mv -f $@.tmp $@ %.min.js: %.js - yui-compressor $? > $@.tmp + ${UGLIFYJS} $? > $@.tmp mv -f $@.tmp $@ $(DEST)/${HANDLEBARS_FILE}: @@ -89,9 +90,6 @@ $(DEST)/VERSION: VERSION chmod 444 $@ release: $(INSTALLED_RELEASABLE) - @if ! which yui-compressor >/dev/null; then \ - echo "*** please install the yui-compressor program"; exit 1; \ - fi if [ -f ${DEST}/releases/mkws-$(VERSION).js ]; then \ echo "*** There is already a release $(VERSION)"; \ else \ @@ -114,7 +112,7 @@ mkws-templates.js: templates/*.handlebars # Checks that the JavaScript can be parsed syntax-check: $(DEST)/mkws.js - yui-compressor $(DEST)/mkws.js >/dev/null + ${UGLIFYJS} $(DEST)/mkws.js >/dev/null # Emits a list of