chore(deps): update dependency webpack-cli to v4 - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
webpack-cli | devDependencies | major | 3.3.12 -> 4.10.0 |
Release Notes
webpack/webpack-cli
v4.10.0
Bug Fixes
- changeTime is already in milliseconds (#3198) (d390d32)
- improve parsing of
--env
flag (#3286) (402c0fe)
Features
- added types (8ec1375)
4.9.2 (2022-01-24)
Bug Fixes
4.9.1 (2021-10-18)
Bug Fixes
v4.9.2
Bug Fixes
v4.9.1
Bug Fixes
v4.9.0
Bug Fixes
Features
v4.8.0
Bug Fixes
- show default value in help output if available (#2814) (7f50948)
- support top multi compiler options (#2874) (82b1fb7)
Features
- show possible values for option in help output (#2819) (828e5c9)
- init-generator: add ability to specify a package manager of choice (#2769) (e53f164)
4.7.2 (2021-06-07)
Note: Version bump only for package webpack-cli (due @webpack-cli/serve
)
4.7.1 (2021-06-07)
Bug Fixes
v4.7.2
Note: Version bump only for package webpack-cli (due @webpack-cli/serve
)
v4.7.1
Bug Fixes
v4.7.0
Bug Fixes
Features
- add
create
andnew
alias forinit
(#2616) (5a9789d) - add
server
alias forserve
command (#2631) (c9ee947) - add flag to force start finish log (#2566) (281aad3)
- added
--no-devtool
to webpack v4(#2603) (7c6f390) - added support arguments description (#2659) (4dfd166)
v4.6.0
Bug Fixes
-
negative
options (#2555) (f26ebc1) - improve error message for help (#2482) (99ae2a3)
- show
--node-env
in minimum help output (#2411) (f5fc302)
Features
- added
WEBPACK_PACKAGE
env var to use customwebpack
package (#2556) (3d1e485) - added
WEBPACK_CLI_SKIP_IMPORT_LOCAL
env var to skip local import (#2546) (e130822) - allow string value for the
--hot
option (#2444) (8656e78) - display used config path when logging level=log (#2431) (f8406e1)
v4.5.0
Notes
- now you can use
webpack.config.mjs
andwebpack.config.js
with{ "type": "module" }
inpackage.json
- you can avoid using the
cross-env
package:
Before:
{
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config build/webpack.config.js"
}
}
Now (you can remove the cross-env
if you don't use it somewhere else):
{
"scripts": {
"build": "webpack --node-env=production --config build/webpack.config.js"
}
}
- the
mode
option respect the--node-env
option if you don't set themode
option explicit using CLI options or in configuration(s), i.e.--node-env production
setprocess.env.NODE_ENV
andmode
toproduction
Bug Fixes
- avoid deprecation message (9d6dbda)
- error message on invalid plugin options (#2380) (f9ce1d3)
- improve description for 'configtest' command (#2379) (311bae3)
Features
- add the
--node-env
flag (#2388) (e5126f1) - entries syntax (#2369) (6b31614)
- support ES module configuration format (#2381) (aebdbbc)
v4.4.0
Bug Fixes
- better description for
--no-watch-options-stdin
(#2288) (4ee8665) - double commands output in help (#2298) (efe81e9)
- pass all
argv
to configurations whenserve
command used (#2345) (5070b9b) - respect
--stats
,--color
and--no-color
option forserve
command (#2312) (73d3fec) - show exact package name while prompting for installation (#2338) (ffc93e5)
- webpack installation prompt message (#2316) (3659c5e)
Features
- added the
configtest
command (#2303) (eb7b189) - added the
build
command (aliases -bundle
andb
) (7590f66) - added the
watch
command (#2357) (9693f7d) - allow to pass parseOption to CLI class (#2299) (2af0801)
- allow to use
help
command to show option information (#2353) (15eb411) - show multiple suggestions on unknown options (#2349) (7314d6c)
4.3.1 (2020-12-31)
Bug Fixes
- error message on not installed module loaders for configuration (#2282) (29eaa8e)
- peer dependencies (#2284) (083f2a0)
- provide useful error on unknown command (d6380bb)
- the
--help
option is working withoutwebpack-dev-server
(#2267) (1dae54d) - the
--progress
option is working with--json
(#2276) (0595603)
v4.3.1
Bug Fixes
- error message on not installed module loaders for configuration (#2282) (29eaa8e)
- peer dependencies (#2284) (083f2a0)
- provide useful error on unknown command (d6380bb)
- the
--help
option is working withoutwebpack-dev-server
(#2267) (1dae54d) - the
--progress
option is working with--json
(#2276) (0595603)
v4.3.0
Bug Fixes
- fix problems with
--mode
and config resolution, there are situations when we resolve an invalid config file, the--mode
option does not affect on config resolution, if you faced with an error after updating, please use the--config
option - correct usage of cli-flags (#2205) (c8fc7d1)
- defer setting default mode to core (#2095) (3eb410e)
- respect the
--watch-options-stdin
option (2d1e001) - respect
--color
/--no-color
option (#2042) (09bd812) - stringify stats using streaming approach (#2190) (9bf4e92)
- use logger for error with proper exit code (#2076) (2c9069f)
- reduce spammy logs (#2206) (9b3cc28)
- respect the
infrastructureLogging.level
option (logger usesstderr
) (#2144) (7daccc7) - respect all options from command line for the
server
command -
help
andversion
output - respect
stats
from the config (webpack@4) (#2098) (2d6e5c6) - fixed colors work with multi compiler mode (webpack@4)
Features
- add
bundle
command (alias forwebpack [options]
) - add
pnpm
support for package installation (#2040) (46cba36)
v4.2.0
Bug Fixes
- --config-name behaviour for fuctional configs (#2006) (29ecf8d)
- assign cache value for default configs (#2013) (d2e3c74)
- callback deprecation (#1977) (2cb0c0e)
- handle core flags for webpack 4 (#2023) (ea66a7e)
- help and version functionality (#1972) (e8010b3)
Features
- export utils from core for other packages (#2011) (3004549)
- progress supports string argument (#2000) (f13346e)
- suggest the closest match based on the Levenshtein distance algorithm (#2010) (491a582)
v4.1.0
Bug Fixes
- avoid unnecessary stringify (#1920) (5ef1e7b)
- colored output (#1944) (2bbbb14)
- move init command to separate package (#1950) (92ad475)
- output stacktrace on errors (#1949) (9ba9d6f)
- run CLI after webpack installation (#1951) (564279e)
- support any config name (#1926) (6f95b26)
- support array of functions and promises (#1946) (2ace39b)
- watch mode and options (#1931) (258219a)
#####
Renovate configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.