1
vote
2answers
71 views

Variables in Google Closure

http://closure-compiler.appspot.com/home (function(){ var somevar = 'somevar'; this.each(function(){ var minify_var = { method1: somevar + '1', method2: somevar + '2', method3: somevar + ...
1
vote
2answers
99 views

Creating a script to use Google Closure for multiple javascript files

I need to use the Google Closure compiler.jar to minify a huge project I am working on. I have multiple js files that I want to compile into a single game.min.js file. I know I can use the ...
0
votes
1answer
241 views

Closure Compiler options

I want to use Closure Compiler to minify/compress JS code. the problem is that it doesn't minify as well as I expect it to. consider the code below. when I pass the string var func = function ( ...
0
votes
2answers
300 views

How to Configure Rock Star Apps plugin in Eclipse for Concatenating and Compressing Javascripts

I am using the rockstarapps plugin for concatenating and compressing/minifying .js files with Google Closure. I chose the option to rebuild files when a dependency changes but now I would like to ...
6
votes
4answers
1k views

Integrating Google Closure Compiler with MS Build on a build server

I'm looking into ways of minifying javascript files as part of our CI process, so that we can use the un-minified files in development and have them automatically compressed when deployed to staging ...
15
votes
1answer
758 views

Why does Google's Closure Compiler leave a few unnecessary spaces or line breaks?

I've noticed that every time I use Google's Closure Compiler Service, it leaves a few unnecessary spaces in the compiled code presented on the right-hand side of the page. These correspond to line ...
34
votes
2answers
16k views

Google Closure minifier online?

Has anyone setup an online copy/paste utility for Google's Closure minifier? I'm working on a project and I want to minify part of the code manually without having to setup the entire project on my ...
5
votes
5answers
2k views

Equivalent of “Google Closure Compiler” for HTML?

Is there an equivalent of Google's Closure Compiler for HTML minimizing?
8
votes
8answers
9k views

How to use Google's Closure to compile JavaScript

Google just released Closure, which is a compiler to minify JavaScript. On the product site, it says "The Closure Compiler has also been integrated with Page Speed". How do I use Page Speed to ...
35
votes
10answers
17k views

jQuery compiled with Google Closure Compiler

Has anyone compiled jQuery against Google's newly-released Closure compiler? There has been reported huge savings in code size. I'm curious what the benefit is if jQuery was compiled with it.