This repository was archived by the owner on Nov 23, 2018. It is now read-only.

Description
If I understand correctly, this ANT Build task does js-minification in this order:
- minifies every js file
- concatenates minified js files
This is really problematic if you want to use Closure Compiler's ADVANCED_OPTIMIZATIONS. The order should be reversed:
- concatenates js files
- minifies the concatenated file
Or have I understood something wrong?