mirror of
https://github.com/jquery/jquery.git
synced 2024-12-09 08:04:24 +00:00
d525ae3416
This commit fixes unit tests for the following builds: 1. The no-deprecated build: `custom:-deprecated` 2. The current slim build: `custom:-ajax,-effects` 3. The 4.0 (#4553) slim build: `custom:-ajax,-callbacks,-deferred,-effects` It also adds separate Travis jobs for the no-deprecated & slim builds. Apart from that, add intuitive names to Travis jobs. Otherwise it's hard to see at a glance that a particular job is running on Firefox ESR, for example. Ref gh-4577 Ref gh-4596 Closes gh-4600
42 lines
646 B
JavaScript
42 lines
646 B
JavaScript
define( [
|
|
"./core",
|
|
"./selector",
|
|
"./traversing",
|
|
"./callbacks",
|
|
"./deferred",
|
|
"./deferred/exceptionHook",
|
|
"./core/ready",
|
|
"./data",
|
|
"./queue",
|
|
"./queue/delay",
|
|
"./attributes",
|
|
"./event",
|
|
"./event/focusin",
|
|
"./manipulation",
|
|
"./manipulation/_evalUrl",
|
|
"./wrap",
|
|
"./css",
|
|
"./css/hiddenVisibleSelectors",
|
|
"./serialize",
|
|
"./ajax",
|
|
"./ajax/xhr",
|
|
"./ajax/script",
|
|
"./ajax/jsonp",
|
|
"./ajax/load",
|
|
"./core/parseXML",
|
|
"./core/parseHTML",
|
|
"./effects",
|
|
"./effects/animatedSelector",
|
|
"./offset",
|
|
"./dimensions",
|
|
"./deprecated",
|
|
"./exports/amd",
|
|
"./exports/global"
|
|
], function( jQuery ) {
|
|
|
|
"use strict";
|
|
|
|
return jQuery;
|
|
|
|
} );
|