Skip to content

Commit b7b0852

Browse files
chore(release): publish new version
- @webpack-cli/[email protected] - @webpack-cli/[email protected] - @webpack-cli/[email protected] - @webpack-cli/[email protected] - [email protected]
1 parent a8afb64 commit b7b0852

File tree

11 files changed

+73
-8
lines changed

11 files changed

+73
-8
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [4.6.0](https://github.com/webpack/webpack-cli/compare/[email protected]@4.6.0) (2021-03-27)
2+
3+
### Bug Fixes
4+
5+
- `negative` options ([#2555](https://github.com/webpack/webpack-cli/issues/2555)) ([f26ebc1](https://github.com/webpack/webpack-cli/commit/f26ebc105e140992639864fa01950454abd716ac))
6+
- improve error message for help ([#2482](https://github.com/webpack/webpack-cli/issues/2482)) ([99ae2a3](https://github.com/webpack/webpack-cli/commit/99ae2a3b9f7ad8c1807839357360a1b4607865b1))
7+
- show `--node-env` in minimum help output ([#2411](https://github.com/webpack/webpack-cli/issues/2411)) ([f5fc302](https://github.com/webpack/webpack-cli/commit/f5fc3023121f4d952a166879a46b2653c20b6349))
8+
9+
### Features
10+
11+
- added `WEBPACK_PACKAGE` env var to use custom `webpack` package ([#2556](https://github.com/webpack/webpack-cli/issues/2556)) ([3d1e485](https://github.com/webpack/webpack-cli/commit/3d1e4855c55a6601d8a89dcb50d9d842009e3cda))
12+
- added `WEBPACK_CLI_SKIP_IMPORT_LOCAL` env var to skip local import ([#2546](https://github.com/webpack/webpack-cli/issues/2546)) ([e130822](https://github.com/webpack/webpack-cli/commit/e13082221c2da01d8b8215ebc936474bf3ca1582))
13+
- allow string value for the `--hot` option ([#2444](https://github.com/webpack/webpack-cli/issues/2444)) ([8656e78](https://github.com/webpack/webpack-cli/commit/8656e78d788bc8a504258d4dcc609767f63d60c4))
14+
- display used config path when logging level=log ([#2431](https://github.com/webpack/webpack-cli/issues/2431)) ([f8406e1](https://github.com/webpack/webpack-cli/commit/f8406e1c5253849fad741eb45f1ece23a7c603f4))
15+
116
# [4.5.0](https://github.com/webpack/webpack-cli/compare/[email protected]@4.5.0) (2021-02-02)
217

318
### Notes

packages/configtest/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-03-27)
7+
8+
**Note:** Version bump only for package @webpack-cli/configtest
9+
610
## [1.0.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-02-02)
711

812
### Bug Fixes

packages/configtest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/configtest",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Validate a webpack configuration.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/generators/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-03-27)
7+
8+
### BREAKING CHANGES
9+
10+
- `--generation-path` option was removed, please use `webpack init ./path/to/generation`
11+
- `--auto` option was removed in favor `--force`
12+
- utils for ast transformations were removed
13+
14+
### Bug Fixes
15+
16+
- description for `init` command ([#2528](https://github.com/webpack/webpack-cli/issues/2528)) ([0f0e403](https://github.com/webpack/webpack-cli/commit/0f0e403464711d5c7ddfe9537e00969fb3474685))
17+
- update prompt message ([#2523](https://github.com/webpack/webpack-cli/issues/2523)) ([7b87485](https://github.com/webpack/webpack-cli/commit/7b87485c6b161d472422e7f86680a7e221223ec1))
18+
- add serve script if opted for WDS with init ([#2424](https://github.com/webpack/webpack-cli/issues/2424)) ([78e2fa7](https://github.com/webpack/webpack-cli/commit/78e2fa7036e123beefe2010e0a6cc10697d14c4d))
19+
- improve prettier message ([#2419](https://github.com/webpack/webpack-cli/issues/2419)) ([21a1a30](https://github.com/webpack/webpack-cli/commit/21a1a30c687cd800396a1c13abefc57bf42886f3))
20+
21+
### Features
22+
23+
- add additional scripts to init template ([#2550](https://github.com/webpack/webpack-cli/issues/2550)) ([665d993](https://github.com/webpack/webpack-cli/commit/665d99378f272179e39236cb21773ef1b1907314))
24+
- add postcss support to default template ([#2526](https://github.com/webpack/webpack-cli/issues/2526)) ([2627d0f](https://github.com/webpack/webpack-cli/commit/2627d0f9490be35f21ed0f55134d7851dd2e5cd0))
25+
- allow all css possibilities for default template ([#2544](https://github.com/webpack/webpack-cli/issues/2544)) ([a141bbb](https://github.com/webpack/webpack-cli/commit/a141bbb1902ec9039d197f3b4b049e2e3eaff793))
26+
627
## [1.3.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-02-02)
728

829
**Note:** Version bump only for package @webpack-cli/generators

packages/generators/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/generators",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Webpack-CLI generators",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/info/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.2.3](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-03-27)
7+
8+
### Bug Fixes
9+
10+
- grammar in description of `--output` ([#2554](https://github.com/webpack/webpack-cli/issues/2554)) ([c6f781d](https://github.com/webpack/webpack-cli/commit/c6f781d741da3b07b25756c053427e5c358ad14f))
11+
612
## [1.2.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-02-02)
713

814
**Note:** Version bump only for package @webpack-cli/info

packages/info/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/info",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Outputs info about system and webpack config",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/serve/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.3.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-03-27)
7+
8+
**Note:** Version bump only for package @webpack-cli/serve
9+
610
# [1.3.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-02-02)
711

812
### Bug Fixes

packages/serve/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/serve",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/webpack-cli/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.6.0](https://github.com/webpack/webpack-cli/compare/[email protected]@4.6.0) (2021-03-27)
7+
8+
### Bug Fixes
9+
10+
- `negative` options ([#2555](https://github.com/webpack/webpack-cli/issues/2555)) ([f26ebc1](https://github.com/webpack/webpack-cli/commit/f26ebc105e140992639864fa01950454abd716ac))
11+
- improve error message for help ([#2482](https://github.com/webpack/webpack-cli/issues/2482)) ([99ae2a3](https://github.com/webpack/webpack-cli/commit/99ae2a3b9f7ad8c1807839357360a1b4607865b1))
12+
- show `--node-env` in minimum help output ([#2411](https://github.com/webpack/webpack-cli/issues/2411)) ([f5fc302](https://github.com/webpack/webpack-cli/commit/f5fc3023121f4d952a166879a46b2653c20b6349))
13+
14+
### Features
15+
16+
- added `WEBPACK_PACKAGE` env var to use custom `webpack` package ([#2556](https://github.com/webpack/webpack-cli/issues/2556)) ([3d1e485](https://github.com/webpack/webpack-cli/commit/3d1e4855c55a6601d8a89dcb50d9d842009e3cda))
17+
- added `WEBPACK_CLI_SKIP_IMPORT_LOCAL` env var to skip local import ([#2546](https://github.com/webpack/webpack-cli/issues/2546)) ([e130822](https://github.com/webpack/webpack-cli/commit/e13082221c2da01d8b8215ebc936474bf3ca1582))
18+
- allow string value for the `--hot` option ([#2444](https://github.com/webpack/webpack-cli/issues/2444)) ([8656e78](https://github.com/webpack/webpack-cli/commit/8656e78d788bc8a504258d4dcc609767f63d60c4))
19+
- display used config path when logging level=log ([#2431](https://github.com/webpack/webpack-cli/issues/2431)) ([f8406e1](https://github.com/webpack/webpack-cli/commit/f8406e1c5253849fad741eb45f1ece23a7c603f4))
20+
621
# [4.5.0](https://github.com/webpack/webpack-cli/compare/[email protected]@4.5.0) (2021-02-02)
722

823
### Bug Fixes

packages/webpack-cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-cli",
3-
"version": "4.5.0",
3+
"version": "4.6.0",
44
"description": "CLI for webpack & friends",
55
"license": "MIT",
66
"repository": {
@@ -29,9 +29,9 @@
2929
],
3030
"dependencies": {
3131
"@discoveryjs/json-ext": "^0.5.0",
32-
"@webpack-cli/configtest": "^1.0.1",
33-
"@webpack-cli/info": "^1.2.2",
34-
"@webpack-cli/serve": "^1.3.0",
32+
"@webpack-cli/configtest": "^1.0.2",
33+
"@webpack-cli/info": "^1.2.3",
34+
"@webpack-cli/serve": "^1.3.1",
3535
"colorette": "^1.2.1",
3636
"commander": "^7.0.0",
3737
"enquirer": "^2.3.6",

0 commit comments

Comments
 (0)