core-js-builder 3.20.0 → 3.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/config.js +3 -3
- package/package.json +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
For some cases could be useful to exclude some `core-js` features or generate a polyfill for target engines. This API helps conditionally include or exclude certain parts of [`core-js`](https://github.com/zloirock/core-js), build for targets [specified in `core-js-compat` format](https://github.com/zloirock/core-js/tree/master/packages/core-js-compat#targets-option).
|
|
4
4
|
|
package/config.js
CHANGED
|
@@ -5,9 +5,9 @@ module.exports = {
|
|
|
5
5
|
/* eslint-disable prefer-template -- for better formatting */
|
|
6
6
|
banner: '/**\n' +
|
|
7
7
|
' * core-js ' + version + '\n' +
|
|
8
|
-
' *
|
|
9
|
-
' *
|
|
10
|
-
' *
|
|
8
|
+
' * © 2014-2022 Denis Pushkarev (zloirock.ru)\n' +
|
|
9
|
+
' * license: https://github.com/zloirock/core-js/blob/v' + version + '/LICENSE\n' +
|
|
10
|
+
' * source: https://github.com/zloirock/core-js\n' +
|
|
11
11
|
' */',
|
|
12
12
|
/* eslint-enable prefer-template -- for better formatting */
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-builder",
|
|
3
3
|
"description": "core-js builder",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.21.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/zloirock/core-js.git",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"core-js": "3.
|
|
13
|
-
"core-js-compat": "3.
|
|
12
|
+
"core-js": "3.21.0",
|
|
13
|
+
"core-js-compat": "3.21.0",
|
|
14
14
|
"mkdirp": ">=0.5.5 <1",
|
|
15
15
|
"webpack": ">=4.46.0 <5"
|
|
16
16
|
},
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"url": "https://opencollective.com/core-js"
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "32492dc5f55ea9bbd21b8fa8145cedd36d68c160"
|
|
26
26
|
}
|