mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Update babel (master) (#113352)
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
cdc5204af9
commit
17d3cb844f
6 changed files with 4141 additions and 3448 deletions
40
package.json
40
package.json
|
@ -92,7 +92,7 @@
|
|||
"yarn": "^1.21.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.12.5",
|
||||
"@babel/runtime": "^7.15.4",
|
||||
"@elastic/apm-rum": "^5.9.1",
|
||||
"@elastic/apm-rum-react": "^1.3.1",
|
||||
"@elastic/charts": "34.2.1",
|
||||
|
@ -415,23 +415,23 @@
|
|||
"yauzl": "^2.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.12.10",
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/generator": "^7.12.11",
|
||||
"@babel/parser": "^7.12.11",
|
||||
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
||||
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
|
||||
"@babel/plugin-proposal-private-methods": "^7.12.1",
|
||||
"@babel/plugin-transform-runtime": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@babel/preset-typescript": "^7.12.7",
|
||||
"@babel/register": "^7.12.10",
|
||||
"@babel/traverse": "^7.12.12",
|
||||
"@babel/types": "^7.12.12",
|
||||
"@babel/cli": "^7.15.7",
|
||||
"@babel/core": "^7.15.5",
|
||||
"@babel/generator": "^7.15.4",
|
||||
"@babel/parser": "^7.15.7",
|
||||
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
||||
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
||||
"@babel/plugin-proposal-private-methods": "^7.14.5",
|
||||
"@babel/plugin-transform-runtime": "^7.15.0",
|
||||
"@babel/preset-env": "^7.15.6",
|
||||
"@babel/preset-react": "^7.14.5",
|
||||
"@babel/preset-typescript": "^7.15.0",
|
||||
"@babel/register": "^7.15.3",
|
||||
"@babel/traverse": "^7.15.4",
|
||||
"@babel/types": "^7.15.6",
|
||||
"@bazel/ibazel": "^0.15.10",
|
||||
"@bazel/typescript": "^3.8.0",
|
||||
"@cypress/snapshot": "^2.1.7",
|
||||
|
@ -493,7 +493,7 @@
|
|||
"@types/angular-mocks": "^1.7.0",
|
||||
"@types/apidoc": "^0.22.3",
|
||||
"@types/archiver": "^5.1.0",
|
||||
"@types/babel__core": "^7.1.12",
|
||||
"@types/babel__core": "^7.1.16",
|
||||
"@types/base64-js": "^1.2.5",
|
||||
"@types/bluebird": "^3.1.1",
|
||||
"@types/chance": "^1.0.0",
|
||||
|
@ -659,7 +659,7 @@
|
|||
"babel-plugin-add-module-exports": "^1.0.4",
|
||||
"babel-plugin-istanbul": "^6.0.0",
|
||||
"babel-plugin-require-context-hook": "^1.0.0",
|
||||
"babel-plugin-styled-components": "^1.10.7",
|
||||
"babel-plugin-styled-components": "^1.13.2",
|
||||
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
||||
"backport": "^5.6.6",
|
||||
"base64url": "^3.0.1",
|
||||
|
|
|
@ -62,18 +62,14 @@ RUNTIME_DEPS = [
|
|||
"@npm//tar",
|
||||
"@npm//tree-kill",
|
||||
"@npm//vinyl",
|
||||
"@npm//yauzl"
|
||||
"@npm//yauzl",
|
||||
]
|
||||
|
||||
TYPES_DEPS = [
|
||||
"//packages/kbn-std",
|
||||
"//packages/kbn-utils",
|
||||
"@npm//axios",
|
||||
"@npm//execa",
|
||||
"@npm//exit-hook",
|
||||
"@npm//getopts",
|
||||
"@npm//rxjs",
|
||||
"@npm//tree-kill",
|
||||
"@npm//@babel/parser",
|
||||
"@npm//@babel/types",
|
||||
"@npm//@types/babel__core",
|
||||
"@npm//@types/cheerio",
|
||||
"@npm//@types/dedent",
|
||||
|
@ -87,7 +83,13 @@ TYPES_DEPS = [
|
|||
"@npm//@types/tar",
|
||||
"@npm//@types/testing-library__jest-dom",
|
||||
"@npm//@types/vinyl",
|
||||
"@npm//@types/yauzl"
|
||||
"@npm//@types/yauzl",
|
||||
"@npm//axios",
|
||||
"@npm//execa",
|
||||
"@npm//exit-hook",
|
||||
"@npm//getopts",
|
||||
"@npm//rxjs",
|
||||
"@npm//tree-kill",
|
||||
]
|
||||
|
||||
jsts_transpiler(
|
||||
|
|
6416
packages/kbn-pm/dist/index.js
vendored
6416
packages/kbn-pm/dist/index.js
vendored
File diff suppressed because one or more lines are too long
|
@ -31,6 +31,7 @@ NPM_MODULE_EXTRA_FILES = [
|
|||
RUNTIME_DEPS = [
|
||||
"//packages/elastic-datemath",
|
||||
"//packages/kbn-utils",
|
||||
"@npm//@babel/runtime",
|
||||
"@npm//@elastic/charts",
|
||||
"@npm//@elastic/eui",
|
||||
"@npm//@elastic/numeral",
|
||||
|
@ -45,15 +46,15 @@ RUNTIME_DEPS = [
|
|||
"@npm//jquery",
|
||||
"@npm//loader-utils",
|
||||
"@npm//mini-css-extract-plugin",
|
||||
"@npm//moment",
|
||||
"@npm//moment-timezone",
|
||||
"@npm//moment",
|
||||
"@npm//raw-loader",
|
||||
"@npm//react",
|
||||
"@npm//react-dom",
|
||||
"@npm//react-intl",
|
||||
"@npm//react-is",
|
||||
"@npm//react-router",
|
||||
"@npm//react-router-dom",
|
||||
"@npm//react-router",
|
||||
"@npm//react",
|
||||
"@npm//regenerator-runtime",
|
||||
"@npm//resize-observer-polyfill",
|
||||
"@npm//rison-node",
|
||||
|
@ -62,7 +63,7 @@ RUNTIME_DEPS = [
|
|||
"@npm//symbol-observable",
|
||||
"@npm//url-loader",
|
||||
"@npm//val-loader",
|
||||
"@npm//whatwg-fetch"
|
||||
"@npm//whatwg-fetch",
|
||||
]
|
||||
|
||||
WEBPACK_DEPS = [
|
||||
|
|
|
@ -62,7 +62,7 @@ exports[`dev/i18n/extractors/html throws on i18n filter usage in complex angular
|
|||
Array [
|
||||
Array [
|
||||
[Error: Couldn't parse angular i18n expression:
|
||||
Missing semicolon (1:5):
|
||||
Missing semicolon. (1:5):
|
||||
mode[37m[41m [49m[39mas ('metricVis.colorModes.' + mode],
|
||||
],
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue