@tsparticles/cli 3.0.10 → 3.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,7 +84,7 @@
84
84
  "prettier": "@tsparticles/prettier-config",
85
85
  "devDependencies": {
86
86
  "@babel/core": "^7.28.3",
87
- "@tsparticles/cli": "^3.0.10",
87
+ "@tsparticles/cli": "^3.0.11",
88
88
  "@tsparticles/eslint-config": "^3.0.5",
89
89
  "@tsparticles/prettier-config": "^3.0.1",
90
90
  "@tsparticles/tsconfig": "^3.0.5",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/cli",
3
- "version": "3.0.10",
3
+ "version": "3.0.11",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,49 +11,49 @@
11
11
  },
12
12
  "prettier": "@tsparticles/prettier-config",
13
13
  "dependencies": {
14
- "@tsparticles/eslint-config": "^3.0.5",
15
- "@tsparticles/prettier-config": "^3.0.1",
16
- "@tsparticles/tsconfig": "^3.0.5",
17
- "@tsparticles/webpack-plugin": "^3.0.5",
18
- "commander": "^14.0.0",
19
- "eslint": "^9.34.0",
14
+ "@tsparticles/eslint-config": "^3.0.6",
15
+ "@tsparticles/prettier-config": "^3.0.6",
16
+ "@tsparticles/tsconfig": "^3.0.6",
17
+ "@tsparticles/webpack-plugin": "^3.0.6",
18
+ "commander": "^14.0.2",
19
+ "eslint": "^9.39.2",
20
20
  "eslint-config-prettier": "^10.1.8",
21
- "eslint-plugin-jsdoc": "^54.1.1",
21
+ "eslint-plugin-jsdoc": "^61.5.0",
22
22
  "eslint-plugin-prettier": "^5.5.4",
23
- "eslint-plugin-tsdoc": "^0.4.0",
24
- "fs-extra": "^11.3.1",
23
+ "eslint-plugin-tsdoc": "^0.5.0",
24
+ "fs-extra": "^11.3.3",
25
25
  "klaw": "^4.1.0",
26
26
  "lookpath": "^1.2.3",
27
27
  "madge": "^8.0.0",
28
- "path-scurry": "^2.0.0",
29
- "prettier": "^3.6.2",
30
- "prettier-plugin-multiline-arrays": "^4.0.3",
28
+ "path-scurry": "^2.0.1",
29
+ "prettier": "^3.7.4",
30
+ "prettier-plugin-multiline-arrays": "4.1.1",
31
31
  "prompts": "^2.4.2",
32
- "rimraf": "^6.0.1",
33
- "typescript": "^5.9.2",
34
- "typescript-eslint": "^8.41.0",
35
- "webpack": "^5.101.3"
32
+ "rimraf": "^6.1.2",
33
+ "typescript": "^5.9.3",
34
+ "typescript-eslint": "^8.50.0",
35
+ "webpack": "^5.104.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@babel/core": "^7.28.3",
39
- "@tsparticles/cli": "^2.3.3",
38
+ "@babel/core": "^7.28.5",
39
+ "@tsparticles/cli": "^3.0.10",
40
40
  "@tsparticles/engine": "^3.9.1",
41
41
  "@types/eslint": "^9.6.1",
42
42
  "@types/estree": "^1.0.8",
43
43
  "@types/fs-extra": "^11.0.4",
44
44
  "@types/klaw": "^3.0.7",
45
45
  "@types/madge": "^5.0.3",
46
- "@types/node": "^24.3.0",
46
+ "@types/node": "^25.0.3",
47
47
  "@types/prompts": "^2.4.9",
48
48
  "@types/webpack-env": "^1.18.8",
49
49
  "babel-loader": "^10.0.0",
50
- "browserslist": "^4.25.4",
50
+ "browserslist": "^4.28.1",
51
51
  "copyfiles": "^2.4.1",
52
- "cross-env": "^10.0.0",
53
- "terser-webpack-plugin": "^5.3.14",
52
+ "cross-env": "^10.1.0",
53
+ "terser-webpack-plugin": "^5.3.16",
54
54
  "ts-node": "^10.9.2",
55
- "vitest": "^1.5.6",
56
- "webpack-bundle-analyzer": "^4.10.2",
55
+ "vitest": "^4.0.16",
56
+ "webpack-bundle-analyzer": "^5.1.0",
57
57
  "webpack-cli": "^6.0.1"
58
58
  },
59
59
  "description": "tsParticles CLI",
@@ -27,8 +27,7 @@ export async function lint(ci: boolean): Promise<boolean> {
27
27
  const messages = errors.map(t =>
28
28
  t.messages
29
29
  .map(m => `${t.filePath} (${m.line.toString()},${m.column.toString()}): ${m.message}`)
30
- .join("\n"),
31
- );
30
+ .join("\n"));
32
31
 
33
32
  throw new Error(messages.join("\n"));
34
33
  }