I am using Google App Engine with JQuery, I want to know if there is any plugin or a way to compress my Java Script files and CSS files automatically when publishing it to the GAE server.
It is very difficult to compress all the files manually every time i upload… and when i have to fix some bugs in the JS files, i need to decompress them 🙁
Yahoo has a minifier for both Javascript and CSS that runs in Java. So if you’re using Java server-side then this may help.
Uglifyjs is an excellent Javascript minifier written in Javascript. If you’re using something like node.js this may help.
Depends if you can do this stuff before pushing to Google app engine or actually on Google app engine.