switch to uglifyjs for minification; another ~5k savings
authorDan Vanderkam <danvdk@gmail.com>
Sun, 21 Jul 2013 11:39:56 +0000 (07:39 -0400)
committerDan Vanderkam <danvdk@gmail.com>
Sun, 21 Jul 2013 11:39:56 +0000 (07:39 -0400)
chopping-block.txt
generate-combined.sh

index fdb78f5..b43d2b4 100644 (file)
@@ -31,6 +31,7 @@ $ make test-combined
  122403 replace rgbcolor.js with a DOM trick.
  122185 consolidate findPos{X,Y}
  120905 move custom circles into extras/circles.js
+ 115027 switch to uglifyjs
 
 
 TODO:
index d5aefeb..76d232c 100755 (executable)
@@ -36,7 +36,8 @@ Copyright () {
 CatMinified () {
   Copyright
   CatSources \
-  | java -jar yuicompressor-2.4.2.jar --type js
+  | uglifyjs - -c -m
+  # | java -jar yuicompressor-2.4.2.jar --type js
 }
 
 ACTION="${1:-update}"