From 42f29fba6d5fdf4d5817d25ef454b84f4a7373fa Mon Sep 17 00:00:00 2001 From: Andy Gaskell Date: Mon, 1 Oct 2018 13:55:49 +0100 Subject: [PATCH] Removing the -n param Looks like -n is removed from the latest uglifyjs, gives the error... error: unknown option `-n' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d846ca1..d0da6ef 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ WATCHR ?= `which watchr` mediawiki: bootstrap cat bootstrap/js/bootstrap.js js/jquery-dotimeout/jquery.ba-dotimeout.js js/behavior.js > js/site.js - uglifyjs -nc js/site.js > js/site.min.js + uglifyjs -c js/site.js > js/site.min.js bootstrap: rm -rf bootstrap