29

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

Tim
  • 325
  • 3
  • 5

2 Answers2

27

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.

mrydengren
  • 4,270
  • 2
  • 32
  • 33
  • This was true at least up to 1.4.3. However, after that they stopped saying what they used to minify in their release notes. Anyone know what they use now? It doesn't seem formatted the same as closure compiler... – thomasrutter Mar 20 '11 at 14:46
  • 3
    Thanks for bringing this to my attention. I've updated my answer to reflect the changes the jQuery team has made to the build system. – mrydengren May 15 '11 at 08:40
2

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

Community
  • 1
  • 1
Bart
  • 6,694
  • 6
  • 43
  • 53