Skip to content

Commit e3b11e8

Browse files
committed
build: reverted vite build, causing issues
1 parent 43bd061 commit e3b11e8

5 files changed

Lines changed: 627 additions & 436 deletions

File tree

demo/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"tsparticles": "workspace:4.0.0-alpha.28"
2020
},
2121
"devDependencies": {
22-
"electron": "^41.0.2"
22+
"electron": "^41.0.3"
2323
},
2424
"type": "module"
2525
}

demo/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
},
1616
"devDependencies": {
1717
"typescript": "^5.9.3",
18-
"vite": "^8.0.0"
18+
"vite": "^7.3.1"
1919
}
2020
}

nx.json

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,44 @@
55
"defaultBase": "main",
66
"targetDefaults": {
77
"build": {
8-
"dependsOn": ["^build"],
9-
"outputs": ["{projectRoot}/dist"],
10-
"inputs": ["production", "^production"],
8+
"dependsOn": [
9+
"^build"
10+
],
11+
"outputs": [
12+
"{projectRoot}/dist"
13+
],
14+
"inputs": [
15+
"production",
16+
"^production"
17+
],
1118
"cache": true
1219
},
1320
"build:ci": {
14-
"dependsOn": ["^build:ci"],
15-
"outputs": ["{projectRoot}/dist"],
16-
"inputs": ["production", "^production"],
21+
"dependsOn": [
22+
"^build:ci"
23+
],
24+
"outputs": [
25+
"{projectRoot}/dist"
26+
],
27+
"inputs": [
28+
"production",
29+
"^production"
30+
],
1731
"cache": true
1832
},
1933
"package": {
20-
"dependsOn": ["^build", "^prepare", "^package"],
21-
"outputs": ["{projectRoot}/dist"],
22-
"inputs": ["production", "^production"],
34+
"dependsOn": [
35+
"^build",
36+
"^prepare",
37+
"^package"
38+
],
39+
"outputs": [
40+
"{projectRoot}/dist"
41+
],
42+
"inputs": [
43+
"production",
44+
"^production"
45+
],
2346
"cache": true
2447
}
2548
},
@@ -29,7 +52,10 @@
2952
}
3053
},
3154
"namedInputs": {
32-
"default": ["{projectRoot}/**/*", "sharedGlobals"],
55+
"default": [
56+
"{projectRoot}/**/*",
57+
"sharedGlobals"
58+
],
3359
"sharedGlobals": [
3460
"{workspaceRoot}/nx.json",
3561
"{workspaceRoot}/package.json",
@@ -42,5 +68,6 @@
4268
"{projectRoot}/tsconfig*.json",
4369
"sharedGlobals"
4470
]
45-
}
71+
},
72+
"analytics": true
4673
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
"@commitlint/cli": "^20.5.0",
3232
"@commitlint/config-conventional": "^20.5.0",
3333
"@swc/core": "^1.15.18",
34-
"@tsparticles/cli": "^3.3.7",
35-
"@tsparticles/depcruise-config": "^3.3.4",
36-
"@tsparticles/eslint-config": "^3.3.4",
37-
"@tsparticles/prettier-config": "^3.3.4",
38-
"@tsparticles/tsconfig": "^3.3.4",
39-
"@tsparticles/webpack-plugin": "^3.3.4",
34+
"@tsparticles/cli": "^3.3.8",
35+
"@tsparticles/depcruise-config": "^3.3.5",
36+
"@tsparticles/eslint-config": "^3.3.5",
37+
"@tsparticles/prettier-config": "^3.3.5",
38+
"@tsparticles/tsconfig": "^3.3.5",
39+
"@tsparticles/webpack-plugin": "^3.3.5",
4040
"@types/jsdom": "^28.0.0",
4141
"@types/node": "^25.5.0",
4242
"@types/webpack-env": "^1.18.8",
@@ -57,7 +57,7 @@
5757
"jsdom": "^29.0.0",
5858
"jsdom-global": "^3.0.2",
5959
"lerna": "^9.0.7",
60-
"nx": "^22.5.4",
60+
"nx": "^22.6.0",
6161
"nx-cloud": "^19.1.0",
6262
"prettier": "^3.8.1",
6363
"prettier-plugin-multiline-arrays": "^4.1.5",
@@ -75,12 +75,12 @@
7575
"typedoc-plugin-mdn-links": "^5.1.1",
7676
"typedoc-plugin-missing-exports": "^4.1.2",
7777
"typescript": "^5.9.3",
78-
"typescript-eslint": "^8.57.0",
78+
"typescript-eslint": "^8.57.1",
7979
"typescript-json-schema": "^0.67.1",
8080
"vitest": "^4.1.0",
8181
"webpack": "^5.105.4",
8282
"webpack-bundle-analyzer": "^5.2.0",
83-
"webpack-cli": "^7.0.0",
83+
"webpack-cli": "^7.0.2",
8484
"yargs": "^18.0.0"
8585
},
8686
"packageManager": "pnpm@10.32.1"

0 commit comments

Comments
 (0)