[7.17] Upgrade babel to ^7 (#174003)

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Jon 2024-01-02 11:01:07 -06:00 committed by GitHub
parent f1baad052c
commit 2d2833d8d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3105 additions and 2739 deletions

View file

@ -70,12 +70,6 @@
"yarn": "^1.21.1" "yarn": "^1.21.1"
}, },
"resolutions": { "resolutions": {
"**/@babel/core": "^7.21.0",
"**/@babel/preset-env": "^7.20.2",
"**/@babel/runtime": "^7.21.0",
"**/@babel/traverse": "^7.21.2",
"**/@babel/types": "^7.21.2",
"**/@types/babel__generator/@babel/types": "^7.21.0",
"**/@types/node": "18.18.5", "**/@types/node": "18.18.5",
"**/@types/react": "^16.14.25", "**/@types/react": "^16.14.25",
"**/@types/react-dom": "^16.9.8", "**/@types/react-dom": "^16.9.8",
@ -96,7 +90,7 @@
"wrap-ansi": "7.0.0" "wrap-ansi": "7.0.0"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.21.0", "@babel/runtime": "^7.23.6",
"@dnd-kit/core": "^3.1.1", "@dnd-kit/core": "^3.1.1",
"@dnd-kit/sortable": "^4.0.0", "@dnd-kit/sortable": "^4.0.0",
"@dnd-kit/utilities": "^2.0.0", "@dnd-kit/utilities": "^2.0.0",
@ -420,24 +414,24 @@
"yauzl": "^2.10.0" "yauzl": "^2.10.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.21.0", "@babel/cli": "^7.23.4",
"@babel/core": "^7.21.0", "@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.19.1", "@babel/eslint-parser": "^7.23.3",
"@babel/eslint-plugin": "^7.19.1", "@babel/eslint-plugin": "^7.23.5",
"@babel/generator": "^7.21.1", "@babel/generator": "^7.23.6",
"@babel/parser": "^7.21.2", "@babel/parser": "^7.23.6",
"@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0", "@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0", "@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.20.2", "@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.18.6", "@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.21.0", "@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.21.0", "@babel/register": "^7.22.15",
"@babel/traverse": "^7.21.2", "@babel/traverse": "^7.23.6",
"@babel/types": "^7.21.2", "@babel/types": "^7.21.2",
"@bazel/ibazel": "^0.16.2", "@bazel/ibazel": "^0.16.2",
"@bazel/typescript": "^3.8.0", "@bazel/typescript": "^3.8.0",
@ -506,8 +500,8 @@
"@testing-library/react-hooks": "^5.1.1", "@testing-library/react-hooks": "^5.1.1",
"@testing-library/user-event": "^13.1.1", "@testing-library/user-event": "^13.1.1",
"@types/archiver": "^5.1.0", "@types/archiver": "^5.1.0",
"@types/babel__core": "^7.20.0", "@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.4", "@types/babel__generator": "^7.6.8",
"@types/base64-js": "^1.2.5", "@types/base64-js": "^1.2.5",
"@types/bluebird": "^3.1.1", "@types/bluebird": "^3.1.1",
"@types/chance": "^1.0.0", "@types/chance": "^1.0.0",
@ -665,7 +659,7 @@
"babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1", "babel-plugin-istanbul": "^6.1.1",
"babel-plugin-require-context-hook": "^1.0.0", "babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^2.0.7", "babel-plugin-styled-components": "^2.1.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24", "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"backport": "^5.6.6", "backport": "^5.6.6",
"blob-polyfill": "^7.0.20220408", "blob-polyfill": "^7.0.20220408",

View file

@ -6,7 +6,7 @@
* Side Public License, v 1. * Side Public License, v 1.
*/ */
module.exports = { module.exports = () => ({
presets: [ presets: [
// plugins always run before presets, but in this case we need the // plugins always run before presets, but in this case we need the
// @babel/preset-typescript preset to run first so we have to move // @babel/preset-typescript preset to run first so we have to move
@ -59,4 +59,4 @@ module.exports = {
}, },
], ],
], ],
}; });

File diff suppressed because one or more lines are too long

2116
yarn.lock

File diff suppressed because it is too large Load diff