Any ideas on how to use the Google Closure Compiler to combine multiple JavaScript files without any optimizations? In particular, we want to use Closure to deploy two versions of our combined JavaScript site: release and debugging. For release, we use --compilation_level SIMPLE_OPTIMIZATIONS --manage_closure_dependencies , which works as intended. However, for debugging, we would like our JavaScript to be merged intact / unmodified to simplify debugging. It seems that the minimum level of optimization is WHITESPACE_ONLY , any ideas would be appreciated.
javascript google-closure-compiler
Hoca
source share