diff options
author | Julian Aubourg <j@ubourg.net> | 2012-06-12 14:13:18 +0300 |
---|---|---|
committer | Julian Aubourg <j@ubourg.net> | 2012-06-12 14:13:18 +0300 |
commit | 501927719cd5b486fae8e2e710cc8e60dbe550ae (patch) | |
tree | b4a7e6992ab806298db417554f77e67c196b24d7 /README.md | |
parent | 83dfb99ea96b7c528667d38bb5e0bcff3dd0f309 (diff) | |
download | jquery-501927719cd5b486fae8e2e710cc8e60dbe550ae.tar.gz jquery-501927719cd5b486fae8e2e710cc8e60dbe550ae.zip |
Adds ajax to the list of optional modules.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 ``` |