Skip to content

Commit 345cd22

Browse files
authored
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
1 parent a684e6b commit 345cd22

File tree

Image for: File tree

2 files changed

Image for: 2 files changed
+4
-1
lines changed

2 files changed

Image for: 2 files changed
+4
-1
lines changed

‎Gruntfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ module.exports = function( grunt ) {
7777
destPrefix: "external"
7878
},
7979
files: {
80+
"core-js-bundle/core-js-bundle.js": "core-js-bundle/minified.js",
81+
"core-js-bundle/LICENSE": "core-js-bundle/LICENSE",
82+
8083
"npo/npo.js": "native-promise-only/lib/npo.src.js",
8184

8285
"qunit/qunit.js": "qunit/qunit/qunit.js",

‎test/data/core/jquery-iterability-transpiled.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
55
<title>jQuery objects transpiled iterability test page</title>
6-
<script src="../../../node_modules/core-js-bundle/minified.js"></script>
6+
<script src="../../../external/core-js-bundle/core-js-bundle.js"></script>
77
<script src="../../jquery.js"></script>
88
<script src="../iframeTest.js"></script>
99
<script src="jquery-iterability-transpiled.js"></script>

0 commit comments

Image for: 0 commit comments
Comments
 (0)