I couldn't find any proper solution for automating Google App Engine CSS and Javascript minification.
|
feedback
|
|
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. | |||||
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. | |||
|
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.
| |||
|
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. | |||
|
feedback
|