Skip to content

Commit 5b7f125

Browse files
committed
chore(release): publish v6.0.0
1 parent 4c7d4f0 commit 5b7f125

12 files changed

Lines changed: 216 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 117 additions & 0 deletions
Large diffs are not rendered by default.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "5.0.0",
5+
"version": "6.0.0",
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"registry": "https://registry.npmjs.org/",

packages/babel-preset-base/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [6.0.0](https://github.com/swashata/wp-webpack-script/compare/v5.0.0...v6.0.0) (2021-04-26)
7+
8+
9+
### Features
10+
11+
* add option for using new jsx runtime for react 17 ([7c88193](https://github.com/swashata/wp-webpack-script/commit/7c88193976d4351772bcf117da89023a22dadd5b))
12+
13+
14+
15+
16+
617
# [5.0.0](https://github.com/swashata/wp-webpack-script/compare/v4.4.1...v5.0.0) (2020-08-07)
718

819

packages/babel-preset-base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wpackio/babel-preset-base",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Babel preset for @wps/scripts, without react specific transforms.",
55
"keywords": [
66
"wordpress",
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"@babel/core": "7.13.16",
58-
"@wpackio/eslint-config": "^5.0.0",
58+
"@wpackio/eslint-config": "^6.0.0",
5959
"dts-gen": "0.6.0"
6060
}
6161
}

packages/cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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+
# [6.0.0](https://github.com/swashata/wp-webpack-script/compare/v5.0.0...v6.0.0) (2021-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* accidental code ([17149c0](https://github.com/swashata/wp-webpack-script/commit/17149c00dbee252e5c34597a07ac49ff792206cb))
12+
* update commander in cli and fix for breaking change ([8837f37](https://github.com/swashata/wp-webpack-script/commit/8837f37cb177cd5dc1520b7cf3dc8c91ecf9c9c0))
13+
* **deps:** update dependency commander to v6.1.0 ([4ac9840](https://github.com/swashata/wp-webpack-script/commit/4ac9840527523ee861d9535d2572787dc94c025b))
14+
* **deps:** update dependency commander to v6.2.0 ([ba8af94](https://github.com/swashata/wp-webpack-script/commit/ba8af945398be72861bda20904bf711cf669489f))
15+
16+
17+
18+
19+
620
# [5.0.0](https://github.com/swashata/wp-webpack-script/compare/v4.4.1...v5.0.0) (2020-08-07)
721

822

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wpackio/cli",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Commandline tool to quickly bootstrap wpackio-scripts to your project.",
55
"keywords": [
66
"wordpress",
@@ -45,7 +45,7 @@
4545
"access": "public"
4646
},
4747
"devDependencies": {
48-
"@wpackio/eslint-config": "^5.0.0",
48+
"@wpackio/eslint-config": "^6.0.0",
4949
"typescript": "4.2.4"
5050
}
5151
}

packages/entrypoint/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
# [6.0.0](https://github.com/swashata/wp-webpack-script/compare/v5.0.0...v6.0.0) (2021-04-26)
7+
8+
**Note:** Version bump only for package @wpackio/entrypoint
9+
10+
11+
12+
13+
614
# [5.0.0](https://github.com/swashata/wp-webpack-script/compare/v4.4.1...v5.0.0) (2020-08-07)
715

816

packages/entrypoint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wpackio/entrypoint",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "An entrypoint for webpack which is added automatically for safe publicPath.",
55
"keywords": [
66
"wordpress",
@@ -20,7 +20,7 @@
2020
"@types/webpack-env": "^1.15.2"
2121
},
2222
"devDependencies": {
23-
"@wpackio/eslint-config": "^5.0.0"
23+
"@wpackio/eslint-config": "^6.0.0"
2424
},
2525
"engines": {
2626
"node": ">=8.9.0"

packages/eslint-config/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
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+
# [6.0.0](https://github.com/swashata/wp-webpack-script/compare/v5.0.0...v6.0.0) (2021-04-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency eslint-import-resolver-typescript to v2.2.1 ([144d55f](https://github.com/swashata/wp-webpack-script/commit/144d55f2f5a01e9467383b3797a2a886f1f1c992))
12+
* **deps:** update dependency eslint-import-resolver-typescript to v2.3.0 ([e9d4c04](https://github.com/swashata/wp-webpack-script/commit/e9d4c04a758f0996b7627d98992cc5e6731a293b))
13+
* **deps:** update typescript-eslint monorepo to v3.10.0 ([7401373](https://github.com/swashata/wp-webpack-script/commit/74013737c6d4d3fce44e9d055a573f998ee5687f))
14+
* **deps:** update typescript-eslint monorepo to v3.10.1 ([637aec0](https://github.com/swashata/wp-webpack-script/commit/637aec0ffb98a0bb4cb3945a8909805f0afeab11))
15+
* **deps:** update typescript-eslint monorepo to v3.9.0 ([e5ab0c7](https://github.com/swashata/wp-webpack-script/commit/e5ab0c7180e72b7c960a5af1a04ca0bd96f60473))
16+
* **deps:** update typescript-eslint monorepo to v3.9.1 ([ee659ec](https://github.com/swashata/wp-webpack-script/commit/ee659ecca4f846c3e5215eb2ee29ab876a435335))
17+
18+
19+
### Features
20+
21+
* upgrade all eslint related dependencies ([42cd20b](https://github.com/swashata/wp-webpack-script/commit/42cd20ba62c8cef69909c08c648180c9083e1f1d))
22+
23+
24+
25+
26+
627
# [5.0.0](https://github.com/swashata/wp-webpack-script/compare/v4.4.1...v5.0.0) (2020-08-07)
728

829

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wpackio/eslint-config",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Shared ESLint config for all @wpackio packages.",
55
"keywords": [
66
"eslint",

0 commit comments

Comments
 (0)