Skip to content

Commit 55dfde8

Browse files
Update babel-plugin-polyfill-corejs3 (#16715)
Co-authored-by: Babel Bot <[email protected]>
1 parent 479b727 commit 55dfde8

File tree

11 files changed

+25
-19
lines changed

11 files changed

+25
-19
lines changed

packages/babel-plugin-proposal-json-modules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"devDependencies": {
4343
"@babel/core": "workspace:^",
4444
"@babel/helper-plugin-test-runner": "workspace:^",
45-
"babel-plugin-polyfill-corejs3": "^0.10.4"
45+
"babel-plugin-polyfill-corejs3": "^0.10.6"
4646
},
4747
"engines": {
4848
"node": ">=6.9.0"

packages/babel-plugin-transform-async-generator-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"devDependencies": {
2929
"@babel/core": "workspace:^",
3030
"@babel/helper-plugin-test-runner": "workspace:^",
31-
"babel-plugin-polyfill-corejs3": "^0.10.4",
31+
"babel-plugin-polyfill-corejs3": "^0.10.6",
3232
"core-js-pure": "^3.30.2"
3333
},
3434
"engines": {

packages/babel-plugin-transform-runtime/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@babel/helper-module-imports": "workspace:^",
2424
"@babel/helper-plugin-utils": "workspace:^",
2525
"babel-plugin-polyfill-corejs2": "condition:BABEL_8_BREAKING ? : ^0.4.10 (peer:@babel/core)",
26-
"babel-plugin-polyfill-corejs3": "condition:BABEL_8_BREAKING ? : ^0.10.1 (peer:@babel/core)",
26+
"babel-plugin-polyfill-corejs3": "condition:BABEL_8_BREAKING ? : ^0.10.6 (peer:@babel/core)",
2727
"babel-plugin-polyfill-regenerator": "condition:BABEL_8_BREAKING ? : ^0.6.1 (peer:@babel/core)",
2828
"semver": "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"
2929
},
@@ -37,7 +37,7 @@
3737
"@babel/preset-env": "workspace:^",
3838
"@babel/runtime": "workspace:^",
3939
"@babel/runtime-corejs3": "workspace:^",
40-
"babel-plugin-polyfill-corejs3": "^0.10.4",
40+
"babel-plugin-polyfill-corejs3": "^0.10.6",
4141
"make-dir": "condition:BABEL_8_BREAKING ? : ^2.1.0"
4242
},
4343
"homepage": "https://babel.dev/docs/en/next/babel-plugin-transform-runtime",

packages/babel-preset-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"@babel/plugin-transform-unicode-sets-regex": "workspace:^",
9696
"@babel/preset-modules": "0.1.6-no-external-plugins",
9797
"babel-plugin-polyfill-corejs2": "condition:BABEL_8_BREAKING ? : ^0.4.10 (peer:@babel/core) (esm:default)",
98-
"babel-plugin-polyfill-corejs3": "^0.10.4",
98+
"babel-plugin-polyfill-corejs3": "^0.10.6",
9999
"babel-plugin-polyfill-regenerator": "condition:BABEL_8_BREAKING ? : ^0.6.1 (peer:@babel/core) (esm:default)",
100100
"core-js-compat": "^3.37.1",
101101
"semver": "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.1"

packages/babel-preset-env/test/fixtures/corejs3-babel-7/usage-typed-array-edge-13/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.object.to-string.js";
34
import "core-js/modules/es.typed-array.int8-array.js";
45
import "core-js/modules/es.typed-array.fill.js";

packages/babel-preset-env/test/fixtures/corejs3-babel-7/usage-typed-array-static/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.array-buffer.slice.js";
34
import "core-js/modules/es.data-view.js";
45
import "core-js/modules/es.object.to-string.js";

packages/babel-preset-env/test/fixtures/corejs3-babel-7/usage-typed-array/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.array-buffer.slice.js";
34
import "core-js/modules/es.data-view.js";
45
import "core-js/modules/es.object.to-string.js";

packages/babel-preset-env/test/fixtures/corejs3/usage-typed-array-edge-13/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.object.to-string.js";
34
import "core-js/modules/es.typed-array.int8-array.js";
45
import "core-js/modules/es.typed-array.fill.js";

packages/babel-preset-env/test/fixtures/corejs3/usage-typed-array-static/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.array-buffer.slice.js";
34
import "core-js/modules/es.data-view.js";
45
import "core-js/modules/es.object.to-string.js";

packages/babel-preset-env/test/fixtures/corejs3/usage-typed-array/output.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "core-js/modules/es.array.iterator.js";
2+
import "core-js/modules/es.array-buffer.constructor.js";
23
import "core-js/modules/es.array-buffer.slice.js";
34
import "core-js/modules/es.data-view.js";
45
import "core-js/modules/es.object.to-string.js";

0 commit comments

Comments
 (0)