Skip to content

Commit af61bb7

Browse files
committed
chore(release): published new version
1 parent 58b8c25 commit af61bb7

File tree

11 files changed

+94
-12
lines changed

11 files changed

+94
-12
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
## 2.0.1 (2023-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency eslint-config-prettier to v9 ([b950d9f](https://github.com/tsparticles/utils/commit/b950d9f2eeca55228d613d6db00ffba0402d0634))
12+
* **deps:** update dependency eslint-plugin-jsdoc to v44 ([b00f1fd](https://github.com/tsparticles/utils/commit/b00f1fd85756fb21c0eb3625f032d27fc1332659))
13+
* **deps:** update dependency eslint-plugin-jsdoc to v45 ([4d0e75c](https://github.com/tsparticles/utils/commit/4d0e75c42cbde77cf5413c1322423b6e04085d09))
14+
* **deps:** update dependency eslint-plugin-jsdoc to v46 ([91247e7](https://github.com/tsparticles/utils/commit/91247e794b3d8275afe12740fdd178a8e69b8b75))
15+
16+
17+
### Features
18+
19+
* added additional externals parameter to webpack plugin ([01c94e8](https://github.com/tsparticles/utils/commit/01c94e8aea203c6c277cc612848a2b22a928a230))
20+
* added effects support ([d1e1743](https://github.com/tsparticles/utils/commit/d1e17431a2b1af081f62f0e52bc7436e3b83e863))
21+
* added eslint-plugin-import for enforcing .js at the end of every import ([be58415](https://github.com/tsparticles/utils/commit/be5841584f4b3a6d6b011031548e8c1929b05c2c))
22+
* added version to webpack output ([496fcbb](https://github.com/tsparticles/utils/commit/496fcbb98c64cdb37c874bfbf8f9c3172806ef58))

lerna.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"npmClient": "pnpm",
55
"conventionalCommits": true,
6-
"packages": ["packages/*"],
6+
"packages": [
7+
"packages/*"
8+
],
79
"command": {
810
"version": {
911
"message": "chore(release): published new version"

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+
## 2.0.1 (2023-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency eslint-config-prettier to v9 ([b950d9f](https://github.com/tsparticles/utils/commit/b950d9f2eeca55228d613d6db00ffba0402d0634))
12+
* **deps:** update dependency eslint-plugin-jsdoc to v44 ([b00f1fd](https://github.com/tsparticles/utils/commit/b00f1fd85756fb21c0eb3625f032d27fc1332659))
13+
* **deps:** update dependency eslint-plugin-jsdoc to v45 ([4d0e75c](https://github.com/tsparticles/utils/commit/4d0e75c42cbde77cf5413c1322423b6e04085d09))
14+
* **deps:** update dependency eslint-plugin-jsdoc to v46 ([91247e7](https://github.com/tsparticles/utils/commit/91247e794b3d8275afe12740fdd178a8e69b8b75))
15+
16+
17+
### Features
18+
19+
* added additional externals parameter to webpack plugin ([01c94e8](https://github.com/tsparticles/utils/commit/01c94e8aea203c6c277cc612848a2b22a928a230))
20+
* added effects support ([d1e1743](https://github.com/tsparticles/utils/commit/d1e17431a2b1af081f62f0e52bc7436e3b83e863))
21+
* added eslint-plugin-import for enforcing .js at the end of every import ([be58415](https://github.com/tsparticles/utils/commit/be5841584f4b3a6d6b011031548e8c1929b05c2c))
22+
23+
24+
25+
26+
627
# [2.0.0](https://github.com/tsparticles/utils/compare/@tsparticles/[email protected]...@tsparticles/[email protected]) (2023-11-21)
728

829
**Note:** Version bump only for package @tsparticles/eslint-config

packages/eslint-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/eslint-config",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "tsParticles default ESLint Configuration",
55
"main": "eslint-config.js",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"access": "public"
1212
},
1313
"dependencies": {
14-
"@tsparticles/prettier-config": "^2.0.0",
14+
"@tsparticles/prettier-config": "^2.0.1",
1515
"@typescript-eslint/eslint-plugin": "^6.14.0",
1616
"@typescript-eslint/parser": "^6.14.0",
1717
"eslint": "^8.55.0",

packages/prettier-config/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+
## 2.0.1 (2023-12-12)
7+
8+
**Note:** Version bump only for package @tsparticles/prettier-config
9+
10+
11+
12+
13+
614
# [2.0.0](https://github.com/tsparticles/utils/compare/@tsparticles/[email protected]...@tsparticles/[email protected]) (2023-11-21)
715

816
**Note:** Version bump only for package @tsparticles/prettier-config

packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/prettier-config",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "tsParticles default Prettier Configuration",
55
"main": "prettier-config.json",
66
"license": "MIT",

packages/tsconfig/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+
## 2.0.1 (2023-12-12)
7+
8+
9+
### Features
10+
11+
* added additional externals parameter to webpack plugin ([01c94e8](https://github.com/tsparticles/utils/commit/01c94e8aea203c6c277cc612848a2b22a928a230))
12+
13+
14+
15+
16+
617
# [2.0.0](https://github.com/tsparticles/utils/compare/@tsparticles/[email protected]...@tsparticles/[email protected]) (2023-11-21)
718

819
**Note:** Version bump only for package @tsparticles/tsconfig

packages/tsconfig/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/tsconfig",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "tsParticles default TypeScript Compiler Configuration",
55
"license": "MIT",
66
"publishConfig": {

packages/webpack-config/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.1 (2023-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency eslint-config-prettier to v9 ([b950d9f](https://github.com/tsparticles/utils/commit/b950d9f2eeca55228d613d6db00ffba0402d0634))
12+
13+
14+
### Features
15+
16+
* added additional externals parameter to webpack plugin ([01c94e8](https://github.com/tsparticles/utils/commit/01c94e8aea203c6c277cc612848a2b22a928a230))
17+
* added effects support ([d1e1743](https://github.com/tsparticles/utils/commit/d1e17431a2b1af081f62f0e52bc7436e3b83e863))
18+
* added version to webpack output ([496fcbb](https://github.com/tsparticles/utils/commit/496fcbb98c64cdb37c874bfbf8f9c3172806ef58))
19+
20+
21+
22+
23+
624
# [2.0.0](https://github.com/tsparticles/utils/compare/@tsparticles/[email protected]...@tsparticles/[email protected]) (2023-11-21)
725

826
**Note:** Version bump only for package @tsparticles/webpack-plugin

packages/webpack-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/webpack-plugin",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"main": "dist/webpack-tsparticles.js",
55
"types": "dist/webpack-tsparticles.d.ts",
66
"license": "MIT",
@@ -27,8 +27,8 @@
2727
"dependencies": {
2828
"@babel/core": "^7.23.6",
2929
"@babel/preset-env": "^7.23.6",
30-
"@tsparticles/eslint-config": "^2.0.0",
31-
"@tsparticles/prettier-config": "^2.0.0",
30+
"@tsparticles/eslint-config": "^2.0.1",
31+
"@tsparticles/prettier-config": "^2.0.1",
3232
"@types/node": "^20.10.0",
3333
"@types/webpack-bundle-analyzer": "^4.6.3",
3434
"@types/webpack-env": "^1.18.4",

0 commit comments

Comments
 (0)