diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-01-07 23:59:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 23:59:08 +0100 |
commit | 0f780ba7cc5968d53bba386bdcb59b8d9410873b (patch) | |
tree | 7b67a1637447eea398606dc516e1f7a8cd8e22ab /src | |
parent | 1dad1185e0b2ca2a13bf411558eda75fb2d4da88 (diff) | |
download | jquery-0f780ba7cc5968d53bba386bdcb59b8d9410873b.tar.gz jquery-0f780ba7cc5968d53bba386bdcb59b8d9410873b.zip |
Build:Tests: Fix custom build tests, verify on Travis
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 future (#4553) slim build: `custom:-ajax,-callbacks,-deferred,-effects`
It also adds separate Travis jobs for the no-deprecated & slim builds.
Closes gh-4577
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax.js | 2 | ||||
-rw-r--r-- | src/core/parseXML.js (renamed from src/ajax/parseXML.js) | 0 | ||||
-rw-r--r-- | src/jquery.js | 3 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/ajax.js b/src/ajax.js index 3d4ce017b..44ec6e83b 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -6,7 +6,7 @@ import nonce from "./ajax/var/nonce.js"; import rquery from "./ajax/var/rquery.js"; import "./core/init.js"; -import "./ajax/parseXML.js"; +import "./core/parseXML.js"; import "./event/trigger.js"; import "./deferred.js"; import "./serialize.js"; // jQuery.param diff --git a/src/ajax/parseXML.js b/src/core/parseXML.js index d547eab53..d547eab53 100644 --- a/src/ajax/parseXML.js +++ b/src/core/parseXML.js diff --git a/src/jquery.js b/src/jquery.js index 24e58a93c..53515267b 100644 --- a/src/jquery.js +++ b/src/jquery.js @@ -21,8 +21,9 @@ import "./ajax.js"; import "./ajax/xhr.js"; import "./ajax/script.js"; import "./ajax/jsonp.js"; -import "./core/parseHTML.js"; import "./ajax/load.js"; +import "./core/parseXML.js"; +import "./core/parseHTML.js"; import "./event/ajax.js"; import "./effects.js"; import "./effects/animatedSelector.js"; |