Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What minifier was used to generate the official JQuery "minified" version?

Tags:

jquery

I need to edit the current JQuery library 1.4.x (and completely rename the JQuery "object/function") in a high conflicting environment.

My question is, with what minifier has the official JQuery minified version been generated. Where can I find this minifier? (As I want to use it for minifing my version too).

Thank you! Tim

like image 779
Tim Avatar asked Feb 05 '10 14:02

Tim


2 Answers

According to the offical release notes it is the Google Closure Compiler.

UPDATE:

As of jQuery 1.5 they are using UglifyJS (ticket) instead of the Google Closure Compiler.

like image 61
mrydengren Avatar answered Nov 19 '22 14:11

mrydengren


I believe it is Google Closure: Google Closure minifier online?

like image 45
Bart Avatar answered Nov 19 '22 12:11

Bart