]> source.dussan.org Git - jquery.git/commitdiff
Adds ajax to the list of optional modules.
authorJulian Aubourg <j@ubourg.net>
Tue, 12 Jun 2012 11:13:18 +0000 (14:13 +0300)
committerJulian Aubourg <j@ubourg.net>
Tue, 12 Jun 2012 11:13:18 +0000 (14:13 +0300)
README.md

index 8a348368a6d5ff23c79429aa7d10c5d6dfb1ff28..37ee409ed7e6b6210741fac10abe08da349c33b1 100644 (file)
--- 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
 ```