Is there anyway to include all *.js files in a directory to be combined and minified using Google's Closure Compiler?
The only way I know of is listing each file individually:
java -jar compiler.jar --js 1.js --js 2.js --js_output_file app-min.js
but in an enterprise app, this is not feasible.
Thanks