What do you use to minimize and compress JavaScript libraries?
|
4
|
|
|
|
|
|
I use YUI Compressor. Seems to get the job done well! |
||
|
|
|
|
I don't minimize JavaScript at all: gzip compression is good enough for me and has the additional benefit that error messages will still be useful. |
||
|
|
|
|
I too use YUI Compressor. I have an ant task like this that I use in my projects:
|
||
|
|
|
|
I have tried YUI compressor before, but it gives me error message. I suggest using JSMIN to minify your javascript: |
||
|
|
|
|
I use a simple (3-4 line) wrapper script around JavaScript::Minifier::XS. |
||
|
|
|
|
Dean Edward's packer achieves some pretty good compression ratios. It has command line implementations which allows it to be used in a continuous integration process. |
||
|
