Skip to content

Instantly share code, notes, and snippets.

@ErinCall
Created March 13, 2012 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ErinCall/2026022 to your computer and use it in GitHub Desktop.
Save ErinCall/2026022 to your computer and use it in GitHub Desktop.
it makes a tiny difference!
# building separately...
$ java -jar scripts/build-mailing-create/tools/closure-compiler/compiler.jar --warning_level QUIET media/js/mailing-create/e2ma/e2ma.save.js --js_output_file e2ma.save.min.js
$ java -jar scripts/build-mailing-create/tools/closure-compiler/compiler.jar --warning_level QUIET media/js/mailing-create/e2ma/e2ma.js --js_output_file e2ma.min.js
$ cat e2ma.save.min.js e2ma.min.js >| all1.js
# building all-at-once...
$ java -jar scripts/build-mailing-create/tools/closure-compiler/compiler.jar --warning_level QUIET --js media/js/mailing-create/e2ma/e2ma.save.js --js media/js/mailing-create/e2ma/e2ma.js --js_output_file all2.js
§ ls -l all*
-rw-rw-r-- 1 alorente staff 15605 Mar 12 18:23 all1.js
-rw-rw-r-- 1 alorente staff 15604 Mar 12 18:25 all2.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment