Since writing on this blog I posted two jQuery plugins and I needed to compress my js files. So as jQuery documentation suggests I used YUICompressor. YUICompressor is javascript and CSS file/code compressor written in Java language. So to run one yourself you will need JRE installed on your machine.
Then call this command:
java -jar /path/to/yuicompressor.jar path/to/file.js -o path/to/minimized.file.js
Your file will be compressed and saved to path you specified as the last parameter (in our case minimized.file.js).
Links:
- Download YUICompressor
- Download JRE (required to run java applications)
- Online version of YUICompressor