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/jquery.js | |
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/jquery.js')
-rw-r--r-- | src/jquery.js | 3 |
1 files changed, 2 insertions, 1 deletions
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"; |