Skip to content

Commit f55d44d

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 586d228 commit f55d44d

File tree

9 files changed

+71
-13
lines changed

9 files changed

+71
-13
lines changed

packages/configtest/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 1.0.0 (2021-01-19)
7+
8+
### Features
9+
10+
- `configtest` validate default configuration ([#2354](https://github.com/webpack/webpack-cli/issues/2354)) ([487691a](https://github.com/webpack/webpack-cli/commit/487691abc8d817f5b3c1ab87743d7235ff15d956))
11+
- added the `watch` command ([#2357](https://github.com/webpack/webpack-cli/issues/2357)) ([9693f7d](https://github.com/webpack/webpack-cli/commit/9693f7d9543a8fce610c4ef903ccca0d12d229a1))
12+
- new `configtest` command ([#2303](https://github.com/webpack/webpack-cli/issues/2303)) ([eb7b189](https://github.com/webpack/webpack-cli/commit/eb7b18937d045261a5b20ca8356e8b4ae4dfcaad))

packages/generators/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-01-19)
7+
8+
### Bug Fixes
9+
10+
- init generator ([#2324](https://github.com/webpack/webpack-cli/issues/2324)) ([016bb34](https://github.com/webpack/webpack-cli/commit/016bb348d7cc9cb299555ec8edd373130fb1b77c))
11+
- regression with webpack config ([#2319](https://github.com/webpack/webpack-cli/issues/2319)) ([50bbe56](https://github.com/webpack/webpack-cli/commit/50bbe56c0ae9d72301c4ac51fdc2b04df7b66451))
12+
- remove splitchunks ([#2310](https://github.com/webpack/webpack-cli/issues/2310)) ([e44e855](https://github.com/webpack/webpack-cli/commit/e44e855c7e302932a828fcedf7abfe205b47c716))
13+
- remove style-loader from the loader chain ([#2309](https://github.com/webpack/webpack-cli/issues/2309)) ([19a25cf](https://github.com/webpack/webpack-cli/commit/19a25cf83dc2f680a5028f4b449d7f79895231f0))
14+
- use worker from plugin and remove default ([#2340](https://github.com/webpack/webpack-cli/issues/2340)) ([9100137](https://github.com/webpack/webpack-cli/commit/9100137bc4e7d77915407aec554da25f0ae9e55c))
15+
16+
### Features
17+
18+
- flexible init scaffolding ([#2311](https://github.com/webpack/webpack-cli/issues/2311)) ([9a74ad0](https://github.com/webpack/webpack-cli/commit/9a74ad08b984325a63d953c685496e48700a2caf))
19+
620
## [1.2.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2020-12-31)
721

822
### Bug Fixes

packages/generators/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/generators",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Webpack-CLI generators",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -18,27 +18,27 @@
1818
],
1919
"dependencies": {
2020
"colorette": "^1.2.1",
21-
"log-symbols": "^4.0.0",
22-
"yeoman-environment": "^2.10.3",
23-
"yeoman-generator": "^4.12.0",
2421
"execa": "^5.0.0",
2522
"findup-sync": "^4.0.0",
2623
"global-modules": "^2.0.0",
2724
"got": "^11.8.0",
2825
"jscodeshift": "^0.11.0",
29-
"p-each-series": "^2.1.0"
26+
"log-symbols": "^4.0.0",
27+
"p-each-series": "^2.1.0",
28+
"yeoman-environment": "^2.10.3",
29+
"yeoman-generator": "^4.12.0"
3030
},
3131
"peerDependencies": {
3232
"webpack": "4.x.x || 5.x.x",
3333
"webpack-cli": "4.x.x"
3434
},
3535
"devDependencies": {
36+
"@types/got": "^9.6.11",
37+
"@types/prettier": "^2.1.5",
3638
"@types/yeoman-assert": "^3.1.1",
3739
"@types/yeoman-generator": "^4.11.3",
3840
"rimraf": "^3.0.2",
39-
"yeoman-assert": "^3.1.1",
40-
"@types/got": "^9.6.11",
41-
"@types/prettier": "^2.1.5"
41+
"yeoman-assert": "^3.1.1"
4242
},
4343
"peerDependenciesMeta": {
4444
"prettier": {

packages/init/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.1.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-01-19)
7+
8+
**Note:** Version bump only for package @webpack-cli/init
9+
610
## [1.1.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2020-12-31)
711

812
### Bug Fixes

packages/init/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@webpack-cli/init",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "init command for webpack-cli",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -12,7 +12,7 @@
1212
"lib"
1313
],
1414
"dependencies": {
15-
"@webpack-cli/generators": "^1.2.1"
15+
"@webpack-cli/generators": "^1.3.0"
1616
},
1717
"peerDependencies": {
1818
"webpack": "4.x.x || 5.x.x",

packages/serve/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2021-01-19)
7+
8+
### Bug Fixes
9+
10+
- pass all `argv` to configurations when `serve` command used ([#2345](https://github.com/webpack/webpack-cli/issues/2345)) ([5070b9b](https://github.com/webpack/webpack-cli/commit/5070b9bcbd5bdac00088d0c21486ad181a4df000))
11+
- respect `--stats`, `--color` and `--no-color` option for serve c… ([#2312](https://github.com/webpack/webpack-cli/issues/2312)) ([73d3fec](https://github.com/webpack/webpack-cli/commit/73d3feced18b4e3708f958707326a6642a594cf2))
12+
613
## [1.2.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/[email protected]...@webpack-cli/[email protected]) (2020-12-31)
714

815
### 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.2.1",
3+
"version": "1.2.2",
44
"description": "",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/webpack-cli/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+
# [4.4.0](https://github.com/webpack/webpack-cli/compare/[email protected]@4.4.0) (2021-01-19)
7+
8+
### Bug Fixes
9+
10+
- better description for --no-watch-options-stdin ([#2288](https://github.com/webpack/webpack-cli/issues/2288)) ([4ee8665](https://github.com/webpack/webpack-cli/commit/4ee8665e01e8dce16448e0a4d3dd2293731695ab))
11+
- double commands output in help ([#2298](https://github.com/webpack/webpack-cli/issues/2298)) ([efe81e9](https://github.com/webpack/webpack-cli/commit/efe81e986a6dca5cc9b72a5c9312dc21409f65b1))
12+
- pass all `argv` to configurations when `serve` command used ([#2345](https://github.com/webpack/webpack-cli/issues/2345)) ([5070b9b](https://github.com/webpack/webpack-cli/commit/5070b9bcbd5bdac00088d0c21486ad181a4df000))
13+
- respect `--stats`, `--color` and `--no-color` option for serve c… ([#2312](https://github.com/webpack/webpack-cli/issues/2312)) ([73d3fec](https://github.com/webpack/webpack-cli/commit/73d3feced18b4e3708f958707326a6642a594cf2))
14+
- show exact package name while prompting for installation ([#2338](https://github.com/webpack/webpack-cli/issues/2338)) ([ffc93e5](https://github.com/webpack/webpack-cli/commit/ffc93e556d784e2d4409cb0d3a92d737850996f4))
15+
- webpack installation prompt message ([#2316](https://github.com/webpack/webpack-cli/issues/2316)) ([3659c5e](https://github.com/webpack/webpack-cli/commit/3659c5e529fe1319251ef1c713d6cc758f7f5353))
16+
17+
### Features
18+
19+
- `configtest` validate default configuration ([#2354](https://github.com/webpack/webpack-cli/issues/2354)) ([487691a](https://github.com/webpack/webpack-cli/commit/487691abc8d817f5b3c1ab87743d7235ff15d956))
20+
- added `build` command (aliases - 'bundle' and 'b') ([7590f66](https://github.com/webpack/webpack-cli/commit/7590f66663ce701d52d9276c3adf9dbdfd1a0fa4))
21+
- added the `watch` command ([#2357](https://github.com/webpack/webpack-cli/issues/2357)) ([9693f7d](https://github.com/webpack/webpack-cli/commit/9693f7d9543a8fce610c4ef903ccca0d12d229a1))
22+
- allow to pass parseOption to CLI class ([#2299](https://github.com/webpack/webpack-cli/issues/2299)) ([2af0801](https://github.com/webpack/webpack-cli/commit/2af08013852a95c6f6462c56a9994a4ee28c6ea1))
23+
- allow to use `help` command to show option information ([#2353](https://github.com/webpack/webpack-cli/issues/2353)) ([15eb411](https://github.com/webpack/webpack-cli/commit/15eb411237dcdcf0db7a501c103fe53f9b82903f))
24+
- new `configtest` command ([#2303](https://github.com/webpack/webpack-cli/issues/2303)) ([eb7b189](https://github.com/webpack/webpack-cli/commit/eb7b18937d045261a5b20ca8356e8b4ae4dfcaad))
25+
- show multiple suggestions on unknown options ([#2349](https://github.com/webpack/webpack-cli/issues/2349)) ([7314d6c](https://github.com/webpack/webpack-cli/commit/7314d6ca927473da2f355a7d356a943471488606))
26+
627
## [4.3.1](https://github.com/webpack/webpack-cli/compare/[email protected]@4.3.1) (2020-12-31)
728

829
### Bug Fixes

packages/webpack-cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-cli",
3-
"version": "4.3.1",
3+
"version": "4.4.0",
44
"description": "CLI for webpack & friends",
55
"license": "MIT",
66
"repository": {
@@ -30,7 +30,7 @@
3030
"@discoveryjs/json-ext": "^0.5.0",
3131
"@webpack-cli/configtest": "^1.0.0",
3232
"@webpack-cli/info": "^1.2.1",
33-
"@webpack-cli/serve": "^1.2.1",
33+
"@webpack-cli/serve": "^1.2.2",
3434
"colorette": "^1.2.1",
3535
"commander": "^6.2.0",
3636
"enquirer": "^2.3.6",

0 commit comments

Comments
 (0)