diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ce595c94..dbfa4076e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + +### Features + +* make entries list accept entry name too ([2c397dc](https://github.com/swashata/wp-webpack-script/commit/2c397dc8fd24bd972b0256997933d6ccac5d4798)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) diff --git a/lerna.json b/lerna.json index f935e4a45..550d0b754 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "6.3.0", + "version": "6.4.0", "npmClient": "yarn", "useWorkspaces": true, "registry": "https://registry.npmjs.org/", diff --git a/packages/babel-preset-base/CHANGELOG.md b/packages/babel-preset-base/CHANGELOG.md index 8328d1d8a..b34746ef9 100644 --- a/packages/babel-preset-base/CHANGELOG.md +++ b/packages/babel-preset-base/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) **Note:** Version bump only for package @wpackio/babel-preset-base diff --git a/packages/babel-preset-base/package.json b/packages/babel-preset-base/package.json index ebf43f430..fc520b3f7 100644 --- a/packages/babel-preset-base/package.json +++ b/packages/babel-preset-base/package.json @@ -1,6 +1,6 @@ { "name": "@wpackio/babel-preset-base", - "version": "6.3.0", + "version": "6.4.0", "description": "Babel preset for @wps/scripts, without react specific transforms.", "keywords": [ "wordpress", @@ -56,7 +56,7 @@ }, "devDependencies": { "@babel/core": "7.14.8", - "@wpackio/eslint-config": "^6.3.0", + "@wpackio/eslint-config": "^6.4.0", "dts-gen": "0.6.0" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 3a8d96237..71de6e158 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) **Note:** Version bump only for package @wpackio/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 4c53ab8d3..d9cc4c483 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@wpackio/cli", - "version": "6.3.0", + "version": "6.4.0", "description": "Commandline tool to quickly bootstrap wpackio-scripts to your project.", "keywords": [ "wordpress", @@ -46,7 +46,7 @@ "access": "public" }, "devDependencies": { - "@wpackio/eslint-config": "^6.3.0", + "@wpackio/eslint-config": "^6.4.0", "typescript": "4.3.5" } } diff --git a/packages/entrypoint/CHANGELOG.md b/packages/entrypoint/CHANGELOG.md index 2cab39559..31ed713ab 100644 --- a/packages/entrypoint/CHANGELOG.md +++ b/packages/entrypoint/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) **Note:** Version bump only for package @wpackio/entrypoint diff --git a/packages/entrypoint/package.json b/packages/entrypoint/package.json index 52f346ae9..17bd64113 100644 --- a/packages/entrypoint/package.json +++ b/packages/entrypoint/package.json @@ -1,6 +1,6 @@ { "name": "@wpackio/entrypoint", - "version": "6.3.0", + "version": "6.4.0", "description": "An entrypoint for webpack which is added automatically for safe publicPath.", "keywords": [ "wordpress", @@ -20,7 +20,7 @@ "@types/webpack-env": "^1.16.2" }, "devDependencies": { - "@wpackio/eslint-config": "^6.3.0" + "@wpackio/eslint-config": "^6.4.0" }, "engines": { "node": ">=8.9.0" diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index b8452cefc..f999e5343 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) ### Bug Fixes diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index e012fefc6..f8c6fd74b 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@wpackio/eslint-config", - "version": "6.3.0", + "version": "6.4.0", "description": "Shared ESLint config for all @wpackio packages.", "keywords": [ "eslint", diff --git a/packages/scripts/CHANGELOG.md b/packages/scripts/CHANGELOG.md index 1c8554622..462507dc4 100644 --- a/packages/scripts/CHANGELOG.md +++ b/packages/scripts/CHANGELOG.md @@ -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. +# [6.4.0](https://github.com/swashata/wp-webpack-script/compare/v6.3.0...v6.4.0) (2021-07-27) + + +### Bug Fixes + +* eslint and typescript issues after upgrade ([12cc73f](https://github.com/swashata/wp-webpack-script/commit/12cc73f700e3297dc31696486e18d32b969a8939)) + + +### Features + +* make entries list accept entry name too ([2c397dc](https://github.com/swashata/wp-webpack-script/commit/2c397dc8fd24bd972b0256997933d6ccac5d4798)) + + + + + # [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26) diff --git a/packages/scripts/package.json b/packages/scripts/package.json index 7960541dd..e8c114d6b 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -1,6 +1,6 @@ { "name": "@wpackio/scripts", - "version": "6.3.0", + "version": "6.4.0", "description": "Main single dependency of @wpackio build tool.", "keywords": [ "wordpress", @@ -37,7 +37,7 @@ "@types/webpack-dev-middleware": "^4.1.2", "@types/webpack-env": "^1.16.2", "@types/webpack-hot-middleware": "^2.25.5", - "@wpackio/babel-preset-base": "^6.3.0", + "@wpackio/babel-preset-base": "^6.4.0", "archiver": "^5.3.0", "autoprefixer": "^10.3.1", "babel-loader": "^8.2.2", @@ -97,7 +97,7 @@ "lint": "eslint src --ext='.ts,.js'", "test": "jest --color", "prepare": "cross-env NODE_ENV=production yarn build", - "format": "prettier --write ./src ./__tests__ ./@types" + "format": "prettier --write ./src ./__tests__ ./@types" }, "publishConfig": { "access": "public" @@ -105,7 +105,7 @@ "devDependencies": { "@types/jest": "26.0.24", "@types/node": "14.14.41", - "@wpackio/eslint-config": "^6.3.0", + "@wpackio/eslint-config": "^6.4.0", "cross-env": "7.0.3", "dts-gen": "0.6.0", "eslint": "7.31.0",