Skip to content

Commit

Permalink
chore(release): publish new version
Browse files Browse the repository at this point in the history
 - @webpack-cli/generate-loader@1.1.0
 - @webpack-cli/generate-plugin@1.1.0
 - @webpack-cli/generators@1.1.0
 - @webpack-cli/info@1.1.0
 - @webpack-cli/init@1.0.3
 - @webpack-cli/migrate@1.1.0
 - @webpack-cli/serve@1.1.0
 - @webpack-cli/utils@1.1.0
 - webpack-cli@4.2.0
 - @webpack-cli/webpack-scaffold@1.0.3
  • Loading branch information
alexander-akait committed Nov 4, 2020
1 parent d2e3c74 commit 0caa918
Show file tree
Hide file tree
Showing 20 changed files with 98 additions and 19 deletions.
6 changes: 6 additions & 0 deletions packages/generate-loader/CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generate-loader@1.0.2...@webpack-cli/generate-loader@1.1.0) (2020-11-04)

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generate-loader@1.0.1...@webpack-cli/generate-loader@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/generate-loader
Expand Down
4 changes: 2 additions & 2 deletions packages/generate-loader/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/generate-loader",
"version": "1.0.2",
"version": "1.1.0",
"description": "A scaffold for generating a loader",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -18,7 +18,7 @@
"templates"
],
"dependencies": {
"@webpack-cli/generators": "^1.0.2",
"@webpack-cli/generators": "^1.1.0",
"yeoman-environment": "^2.10.3"
},
"peerDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/generate-plugin/CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generate-plugin@1.0.2...@webpack-cli/generate-plugin@1.1.0) (2020-11-04)

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generate-plugin@1.0.1...@webpack-cli/generate-plugin@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/generate-plugin
Expand Down
4 changes: 2 additions & 2 deletions packages/generate-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/generate-plugin",
"version": "1.0.2",
"version": "1.1.0",
"description": "A scaffold for generating a plugin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -18,7 +18,7 @@
"templates"
],
"dependencies": {
"@webpack-cli/generators": "^1.0.2",
"@webpack-cli/generators": "^1.1.0",
"yeoman-environment": "^2.10.3"
},
"peerDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/generators/CHANGELOG.md
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generators@1.0.2...@webpack-cli/generators@1.1.0) (2020-11-04)

### Bug Fixes

- **generators:** correct optimization.splitChunks option in config ([#2008](https://github.com/webpack/webpack-cli/issues/2008)) ([f86ef2d](https://github.com/webpack/webpack-cli/commit/f86ef2d6c0a4cba3b2002baf32b78e06cbaafc4a))

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/generators@1.0.1...@webpack-cli/generators@1.0.2) (2020-10-19)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/generators/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/generators",
"version": "1.0.2",
"version": "1.1.0",
"description": "Webpack-CLI generators",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -14,8 +14,8 @@
"templates"
],
"dependencies": {
"@webpack-cli/utils": "^1.0.2",
"@webpack-cli/webpack-scaffold": "^1.0.2",
"@webpack-cli/utils": "^1.1.0",
"@webpack-cli/webpack-scaffold": "^1.0.3",
"colorette": "^1.2.1",
"log-symbols": "^4.0.0",
"yeoman-generator": "^4.12.0"
Expand Down
10 changes: 10 additions & 0 deletions packages/info/CHANGELOG.md
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/info@1.0.2...@webpack-cli/info@1.1.0) (2020-11-04)

### Bug Fixes

- **info:** throw error and exit for invalid --output value ([#2020](https://github.com/webpack/webpack-cli/issues/2020)) ([a994d4b](https://github.com/webpack/webpack-cli/commit/a994d4b52a99b3b77d25aac88f741e036a1c44ec))

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/info@1.0.1...@webpack-cli/info@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/info
Expand Down
2 changes: 1 addition & 1 deletion packages/info/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/info",
"version": "1.0.2",
"version": "1.1.0",
"description": "Outputs info about system and webpack config",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions packages/init/CHANGELOG.md
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.3](https://github.com/webpack/webpack-cli/compare/@webpack-cli/init@1.0.2...@webpack-cli/init@1.0.3) (2020-11-04)

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

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/init@1.0.1...@webpack-cli/init@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/init
Expand Down
6 changes: 3 additions & 3 deletions packages/init/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/init",
"version": "1.0.2",
"version": "1.0.3",
"description": "init command for webpack-cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -12,8 +12,8 @@
"lib"
],
"dependencies": {
"@webpack-cli/generators": "^1.0.2",
"@webpack-cli/utils": "^1.0.2"
"@webpack-cli/generators": "^1.1.0",
"@webpack-cli/utils": "^1.1.0"
},
"peerDependencies": {
"webpack": "4.x.x || 5.x.x",
Expand Down
6 changes: 6 additions & 0 deletions packages/migrate/CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/migrate@1.0.2...@webpack-cli/migrate@1.1.0) (2020-11-04)

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/migrate@1.0.1...@webpack-cli/migrate@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/migrate
Expand Down
4 changes: 2 additions & 2 deletions packages/migrate/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/migrate",
"version": "1.0.2",
"version": "1.1.0",
"description": "Migrate command for webpack-cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -12,7 +12,7 @@
"lib"
],
"dependencies": {
"@webpack-cli/utils": "^1.0.2",
"@webpack-cli/utils": "^1.1.0",
"colorette": "^1.2.1",
"diff": "^4.0.2",
"inquirer": "^7.3.3",
Expand Down
11 changes: 11 additions & 0 deletions packages/serve/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/serve@1.0.1...@webpack-cli/serve@1.1.0) (2020-11-04)

### Bug Fixes

- resolve dev server hot options correctly ([#2022](https://github.com/webpack/webpack-cli/issues/2022)) ([7c5a2ba](https://github.com/webpack/webpack-cli/commit/7c5a2bae49625ee4982d7478b7e741968731cea2))

### Features

- add WEBPACK_SERVE environment variable ([#2027](https://github.com/webpack/webpack-cli/issues/2027)) ([ea369a9](https://github.com/webpack/webpack-cli/commit/ea369a98ea5ec366b688caebcb1276d9fbe0c651))
- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.1](https://github.com/webpack/webpack-cli/compare/@webpack-cli/serve@1.0.1-rc.1...@webpack-cli/serve@1.0.1) (2020-10-10)

**Note:** Version bump only for package @webpack-cli/serve
Expand Down
2 changes: 1 addition & 1 deletion packages/serve/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/serve",
"version": "1.0.1",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/webpack/webpack-cli/compare/@webpack-cli/utils@1.0.2...@webpack-cli/utils@1.1.0) (2020-11-04)

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/utils@1.0.1...@webpack-cli/utils@1.0.2) (2020-10-19)

**Note:** Version bump only for package @webpack-cli/utils
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/utils",
"version": "1.0.2",
"version": "1.1.0",
"description": "webpack-cli utility files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
16 changes: 16 additions & 0 deletions packages/webpack-cli/CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.1.0...webpack-cli@4.2.0) (2020-11-04)

### Bug Fixes

- --config-name behaviour for fuctional configs ([#2006](https://github.com/webpack/webpack-cli/issues/2006)) ([29ecf8d](https://github.com/webpack/webpack-cli/commit/29ecf8dbcd1c5c7d75fc7fb1634107697832d952))
- assign cache value for default configs ([#2013](https://github.com/webpack/webpack-cli/issues/2013)) ([d2e3c74](https://github.com/webpack/webpack-cli/commit/d2e3c74d32b0141c694259cf4f31e6c48b0f681d))
- callback deprecation ([#1977](https://github.com/webpack/webpack-cli/issues/1977)) ([2cb0c0e](https://github.com/webpack/webpack-cli/commit/2cb0c0e383670949ce31231edbfda514f47c3dfc))
- handle core flags for webpack 4 ([#2023](https://github.com/webpack/webpack-cli/issues/2023)) ([ea66a7e](https://github.com/webpack/webpack-cli/commit/ea66a7e3ec6eabcc439b96acb21e2a25be2e35e5))
- help and version functionality ([#1972](https://github.com/webpack/webpack-cli/issues/1972)) ([e8010b3](https://github.com/webpack/webpack-cli/commit/e8010b3aac695971e542ad4d3584ce534da39b8f))

### Features

- export utils from core for other packages ([#2011](https://github.com/webpack/webpack-cli/issues/2011)) ([3004549](https://github.com/webpack/webpack-cli/commit/3004549c06b3fe00708d8e1eecf42419e0f72f66))
- progress supports string argument ([#2000](https://github.com/webpack/webpack-cli/issues/2000)) ([f13346e](https://github.com/webpack/webpack-cli/commit/f13346e6acb46e982a5d20fa1d2ae56fc52523dc))
- suggest the closest match based on the Levenshtein distance algorithm ([#2010](https://github.com/webpack/webpack-cli/issues/2010)) ([491a582](https://github.com/webpack/webpack-cli/commit/491a582620b64ed4acbccd04f687adc28a5e4cff))

# [4.1.0](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.0.0...webpack-cli@4.1.0) (2020-10-19)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/webpack-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "webpack-cli",
"version": "4.1.0",
"version": "4.2.0",
"description": "CLI for webpack & friends",
"license": "MIT",
"repository": {
Expand All @@ -27,8 +27,8 @@
"lib"
],
"dependencies": {
"@webpack-cli/info": "^1.0.2",
"@webpack-cli/serve": "^1.0.1",
"@webpack-cli/info": "^1.1.0",
"@webpack-cli/serve": "^1.1.0",
"colorette": "^1.2.1",
"command-line-usage": "^6.1.0",
"commander": "^6.2.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/webpack-scaffold/CHANGELOG.md
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.3](https://github.com/webpack/webpack-cli/compare/@webpack-cli/webpack-scaffold@1.0.2...@webpack-cli/webpack-scaffold@1.0.3) (2020-11-04)

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

## [1.0.2](https://github.com/webpack/webpack-cli/compare/@webpack-cli/webpack-scaffold@1.0.1...@webpack-cli/webpack-scaffold@1.0.2) (2020-10-19)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-scaffold/package.json
@@ -1,6 +1,6 @@
{
"name": "@webpack-cli/webpack-scaffold",
"version": "1.0.2",
"version": "1.0.3",
"description": "Utility files for webpack-scaffold",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 0caa918

Please sign in to comment.