core-js-builder 3.25.0 → 3.25.1
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/README.md +6 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
+
<div align="center">
|
|
4
|
+
|
|
5
|
+
[](https://opencollective.com/core-js) [](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [](https://www.npmjs.com/package/core-js-builder) [](https://github.com/zloirock/core-js/actions) [](https://github.com/zloirock/core-js/actions)
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
|
|
3
9
|
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) and build for targets. `modules`, `exclude` and `targets` options are specified in [the `core-js-compat` format](https://github.com/zloirock/core-js/tree/master/packages/core-js-compat).
|
|
4
10
|
|
|
5
11
|
```js
|
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-builder",
|
|
3
3
|
"description": "core-js builder",
|
|
4
|
-
"version": "3.25.
|
|
4
|
+
"version": "3.25.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/zloirock/core-js.git",
|
|
8
8
|
"directory": "packages/core-js-builder"
|
|
9
9
|
},
|
|
10
10
|
"main": "index.js",
|
|
11
|
+
"sideEffects": false,
|
|
11
12
|
"dependencies": {
|
|
12
|
-
"core-js": "3.25.
|
|
13
|
-
"core-js-compat": "3.25.
|
|
13
|
+
"core-js": "3.25.1",
|
|
14
|
+
"core-js-compat": "3.25.1",
|
|
14
15
|
"mkdirp": ">=0.5.5 <1",
|
|
15
16
|
"webpack": ">=4.46.0 <5"
|
|
16
17
|
},
|