diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2013-09-02 19:21:09 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2013-09-06 03:40:49 +0200 |
commit | badcd1b6f301e6253405f17759c1270549a34e12 (patch) | |
tree | 85c41bdda0cfcfa7a12b3a4d5bb5022e6a06684d /README.md | |
parent | 9035cab8c8574404c9eaeb795d0d87f4df772d45 (diff) | |
download | jquery-badcd1b6f301e6253405f17759c1270549a34e12.tar.gz jquery-badcd1b6f301e6253405f17759c1270549a34e12.zip |
Fix #10814. Fix #14084. Make support tests lazy and broken out to components.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -88,11 +88,10 @@ Some example modules that can be excluded are: - **exports/amd**: Exclude the AMD definition. - **core/ready**: Exclude the ready module if you place your scripts at the end of the body. Any ready callbacks bound with `jQuery()` will simply be called immediately. However, `jQuery(document).ready()` will not be a function and `.on("ready", ...)` or similar will not be triggered. - **deferred**: Exclude jQuery.Deferred. This also removes jQuery.Callbacks. *Note* that modules that depend on jQuery.Deferred(AJAX, effects, core/ready) will not be removed and will still expect jQuery.Deferred to be there. Include your own jQuery.Deferred implementation or exclude those modules as well (`grunt custom:-deferred,-ajax,-effects,-core/ready`). -- **support**: Excluding the support module is not recommended, but possible. It's your responsibility to either remove modules that use jQuery.support (many of them) or replace the values wherever jQuery.support is used. This is mainly only useful when building a barebones version of jQuery. Removing sizzle is not supported on the 1.x branch. -*Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animated-selector` and `css/hidden-visible-selectors`). +*Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animatedSelector` and `css/hiddenVisibleSelectors`). The build process shows a message for each dependent module it excludes or includes. |