Skip to content

Commit ab42c4c

Browse files
authored
Merge pull request #124 from tsparticles/dev
3.1.9
2 parents d381997 + dbc03c4 commit ab42c4c

File tree

14 files changed

+66
-18
lines changed

14 files changed

+66
-18
lines changed

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+
## [3.1.9](https://github.com/tsparticles/utils/compare/v3.1.8...v3.1.9) (2026-02-24)
7+
8+
**Note:** Version bump only for package tsparticles-utils-root
9+
10+
11+
12+
13+
614
## [3.1.8](https://github.com/tsparticles/utils/compare/v3.1.7...v3.1.8) (2026-02-24)
715

816
**Note:** Version bump only for package tsparticles-utils-root

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.8",
2+
"version": "3.1.9",
33
"npmClient": "pnpm",
44
"conventionalCommits": true,
55
"command": {

packages/depcruise-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+
## [3.1.9](https://github.com/tsparticles/utils/compare/v3.1.8...v3.1.9) (2026-02-24)
7+
8+
**Note:** Version bump only for package @tsparticles/depcruise-config
9+
10+
11+
12+
13+
614
## [3.1.8](https://github.com/tsparticles/utils/compare/v3.1.7...v3.1.8) (2026-02-24)
715

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

packages/depcruise-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/depcruise-config",
3-
"version": "3.1.8",
3+
"version": "3.1.9",
44
"private": false,
55
"type": "module",
66
"publishConfig": {
@@ -41,8 +41,8 @@
4141
},
4242
"devDependencies": {
4343
"@stylistic/eslint-plugin": "^5.9.0",
44-
"@tsparticles/eslint-config": "workspace:^3.1.8",
45-
"@tsparticles/prettier-config": "workspace:^3.1.8",
44+
"@tsparticles/eslint-config": "workspace:^3.1.9",
45+
"@tsparticles/prettier-config": "workspace:^3.1.9",
4646
"@types/node": "^25.3.0",
4747
"eslint": "^9.39.3",
4848
"eslint-config-prettier": "^10.1.8",

packages/eslint-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+
## [3.1.9](https://github.com/tsparticles/utils/compare/v3.1.8...v3.1.9) (2026-02-24)
7+
8+
**Note:** Version bump only for package @tsparticles/eslint-config
9+
10+
11+
12+
13+
614
## [3.1.8](https://github.com/tsparticles/utils/compare/v3.1.7...v3.1.8) (2026-02-24)
715

816
**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": "3.1.8",
3+
"version": "3.1.9",
44
"description": "tsParticles default ESLint Configuration (ESLint 9 + Flat Config)",
55
"type": "module",
66
"main": "dist/eslint.config.js",
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@eslint/js": "^9.39.3",
2424
"@stylistic/eslint-plugin": "^5.9.0",
25-
"@tsparticles/prettier-config": "workspace:^3.1.8",
25+
"@tsparticles/prettier-config": "workspace:^3.1.9",
2626
"@types/node": "^25.3.0",
2727
"eslint": "^9.39.3",
2828
"eslint-config-prettier": "^10.1.8",

packages/eslint-config/src/eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineConfig } from "eslint/config";
1+
import { defineConfig, globalIgnores } from "eslint/config";
22
import fs from "node:fs";
33
import js from "@eslint/js";
44
import jsdoc from "eslint-plugin-jsdoc";
@@ -15,13 +15,13 @@ const consumerDir = process.cwd(),
1515
parserProject = fs.existsSync(consumerTsconfig) ? consumerTsconfig : undefined;
1616

1717
export default defineConfig([
18+
globalIgnores(["dist", "node_modules"]),
1819
js.configs.recommended,
1920
stylistic.configs.recommended,
2021
jsdoc.configs["flat/recommended-typescript"],
2122
...tseslint.configs.strictTypeChecked,
2223
...tseslint.configs.stylisticTypeChecked,
2324
{
24-
ignores: ["dist", "node_modules"],
2525
plugins: {
2626
"@stylistic": stylistic,
2727
"@typescript-eslint": tseslint.plugin,

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+
## [3.1.9](https://github.com/tsparticles/utils/compare/v3.1.8...v3.1.9) (2026-02-24)
7+
8+
**Note:** Version bump only for package @tsparticles/prettier-config
9+
10+
11+
12+
13+
614
## [3.1.8](https://github.com/tsparticles/utils/compare/v3.1.7...v3.1.8) (2026-02-24)
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": "3.1.8",
3+
"version": "3.1.9",
44
"description": "tsParticles default Prettier Configuration",
55
"main": "dist/prettier-config.json",
66
"license": "MIT",

packages/tsconfig/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+
## [3.1.9](https://github.com/tsparticles/utils/compare/v3.1.8...v3.1.9) (2026-02-24)
7+
8+
**Note:** Version bump only for package @tsparticles/tsconfig
9+
10+
11+
12+
13+
614
## [3.1.8](https://github.com/tsparticles/utils/compare/v3.1.7...v3.1.8) (2026-02-24)
715

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

0 commit comments

Comments
 (0)