I have a javascript file that I have written. It is larger than it has to be. I use the closure compiler to solve the problem of it being larger than it has to be.
However, the resulting javascript is still somewhat slightly larger than it has to be. It has line breaks in it, and the javascript would work without it. I know why it adds line breaks, but for my purposes, the line breaks are not required.
How would I force the compiler to not add line breaks?
Here is the command line prompt that I use: java -jar closure-compiler.jar input.js > output.js --rewrite_polyfills=false