From: Julian Aubourg Date: Tue, 12 Jun 2012 11:13:18 +0000 (+0300) Subject: Adds ajax to the list of optional modules. X-Git-Tag: 1.8b1~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=501927719cd5b486fae8e2e710cc8e60dbe550ae;p=jquery.git Adds ajax to the list of optional modules. --- diff --git a/README.md b/README.md index 8a348368a..37ee409ed 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ The built version of jQuery will be put in the `dist/` subdirectory. Starting in jQuery 1.8, special builds can now be created that optionally exlude or include any of the following modules: +- ajax - dimensions - effects - offset @@ -81,6 +82,12 @@ Starting in jQuery 1.8, special builds can now be created that optionally exlude To create a custom build, use the following special `grunt` commands: +Exclude **ajax**: + +```bash +grunt build:*:*:-ajax +``` + Exclude **dimensions**: ```bash @@ -102,7 +109,7 @@ grunt build:*:*:-offset Exclude **all** optional modules: ```bash -grunt build:*:*:-dimensions:-effects:-offset +grunt build:*:*:-ajax:-dimensions:-effects:-offset ```