mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Bump webpack-dev-server, cli (#136352)
This commit is contained in:
parent
9625474649
commit
96e284fdf4
6 changed files with 454 additions and 485 deletions
|
@ -334,7 +334,7 @@
|
|||
"commander": "^4.1.1",
|
||||
"compare-versions": "3.5.1",
|
||||
"constate": "^1.3.2",
|
||||
"content-disposition": "0.5.3",
|
||||
"content-disposition": "^0.5.4",
|
||||
"copy-to-clipboard": "^3.0.8",
|
||||
"core-js": "^3.23.5",
|
||||
"cronstrue": "^1.51.0",
|
||||
|
@ -404,7 +404,6 @@
|
|||
"jsts": "^1.6.2",
|
||||
"kea": "^2.4.2",
|
||||
"load-json-file": "^6.2.0",
|
||||
"loader-utils": "^1.2.3",
|
||||
"lodash": "^4.17.21",
|
||||
"lru-cache": "^4.1.5",
|
||||
"luxon": "^2.3.2",
|
||||
|
@ -446,7 +445,6 @@
|
|||
"proxy-from-env": "1.0.0",
|
||||
"puid": "1.0.7",
|
||||
"puppeteer": "^10.2.0",
|
||||
"qs": "^6.10.5",
|
||||
"query-string": "^6.13.2",
|
||||
"rbush": "^3.0.1",
|
||||
"re-resizable": "^6.1.1",
|
||||
|
@ -1114,6 +1112,7 @@
|
|||
"license-checker": "^25.0.1",
|
||||
"listr": "^0.14.1",
|
||||
"lmdb-store": "^1.6.11",
|
||||
"loader-utils": "^1.2.3",
|
||||
"marge": "^1.0.1",
|
||||
"micromatch": "3.1.10",
|
||||
"mini-css-extract-plugin": "1.1.0",
|
||||
|
@ -1177,8 +1176,8 @@
|
|||
"watchpack": "^1.6.0",
|
||||
"webpack": "^4.41.5",
|
||||
"webpack-bundle-analyzer": "^4.5.0",
|
||||
"webpack-cli": "^3.3.12",
|
||||
"webpack-dev-server": "^3.11.0",
|
||||
"webpack-cli": "^4.10.0",
|
||||
"webpack-dev-server": "^4.9.3",
|
||||
"webpack-merge": "^4.2.2",
|
||||
"webpack-sources": "^1.4.1",
|
||||
"xml-crypto": "^2.1.3",
|
||||
|
|
|
@ -75,8 +75,9 @@ webpack(
|
|||
"$(location webpack.config.js)",
|
||||
"--output-path",
|
||||
"$(@D)",
|
||||
"--env.prod",
|
||||
"--display=minimal"
|
||||
"--env",
|
||||
"prod",
|
||||
"--no-stats"
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ webpack(
|
|||
"$(location webpack.config.js)",
|
||||
"--output-path",
|
||||
"$(@D)",
|
||||
"--display=minimal"
|
||||
"--no-stats"
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ webpack(
|
|||
"$(location webpack.config.js)",
|
||||
"--output-path",
|
||||
"$(@D)",
|
||||
"--display=minimal"
|
||||
"--no-stats"
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -58,10 +58,7 @@ run(
|
|||
'--config',
|
||||
webpackConfig,
|
||||
...(process.stdout.isTTY && !process.env.CI ? ['--progress'] : []),
|
||||
'--hide-modules',
|
||||
'--display-entrypoints',
|
||||
'false',
|
||||
'--content-base',
|
||||
'--static',
|
||||
SHAREABLE_RUNTIME_SRC,
|
||||
],
|
||||
options
|
||||
|
@ -94,7 +91,6 @@ run(
|
|||
require.resolve('webpack/bin/webpack'),
|
||||
'--config',
|
||||
webpackConfig,
|
||||
'--hide-modules',
|
||||
...(process.stdout.isTTY && !process.env.CI ? ['--progress'] : []),
|
||||
],
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue