diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-04-13 22:10:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 22:10:09 +0200 |
commit | 345cd22e5664655ed315958ed2056610607c12ef (patch) | |
tree | cec8d9c0564b097b0028ced709e5f4413c1349eb /Gruntfile.js | |
parent | a684e6ba836f7c553968d7d026ed7941e1a612d8 (diff) | |
download | jquery-345cd22e5664655ed315958ed2056610607c12ef.tar.gz jquery-345cd22e5664655ed315958ed2056610607c12ef.zip |
Build: Take core-js-bundle from the external directory as well
That package was missed in gh-4865 as it only broke browsers needing the
polyfill which is just IE at the moment. Thus, it broke Core tests in IE only.
Ref gh-4865
Closes gh-4870
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 4afbec921..fc35a843a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -77,6 +77,9 @@ module.exports = function( grunt ) { destPrefix: "external" }, files: { + "core-js-bundle/core-js-bundle.js": "core-js-bundle/minified.js", + "core-js-bundle/LICENSE": "core-js-bundle/LICENSE", + "npo/npo.js": "native-promise-only/lib/npo.src.js", "qunit/qunit.js": "qunit/qunit/qunit.js", |