I couldn't find any proper solution for automating Google App Engine CSS and Javascript minification.

link|improve this question

70% accept rate
feedback

4 Answers

Write a deploy script that makes a copy of your app with minified JS and CSS, and then calls appcfg on it. You shouldn't be minifying it dynamically unless you're generating it dynamically.

link|improve this answer
What's wrong in minifying on-the-fly? If you're using cached copies, I don't see what's wrong with this method. – Ron Reiter Sep 2 '11 at 6:32
@Ron Your code isn't changing, so there's no reason to minify over and over again. Those users who get cache misses are going to see significant extra latency, for no real gain on your end. It also wastes resources. – Nick Johnson Sep 4 '11 at 5:14
feedback

I ended up creating this appengine script (uses memcache and slimit). I found slimit to be the best minification script all around, but I'm thinking about using the one from Google instead.

http://ronreiterdotcom.wordpress.com/2011/08/30/automatic-javascript-minification-using-slimit-on-google-app-engine/

link|improve this answer
feedback

Nick's answer is the correct way to do it, but you could do it on the fly when the JS/CSS is requested - then set cache-control to public to cache the results upstream.

link|improve this answer
feedback

You could try a build-time or a runtime solution (using maven plugin) provided by a tool called wro4j

Disclaimer: this is a project I'm working on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.