Skip to content

Commit d6b0d22

Browse files
authored
Merge pull request #156 from tsparticles/dev
3.4.2
2 parents d6a62e2 + 351844f commit d6b0d22

6 files changed

Lines changed: 74 additions & 103 deletions

File tree

files/empty-project/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@
8585
"devDependencies": {
8686
"@swc/core": "^1.15.21",
8787
"@tsparticles/cli": "latest",
88-
"@tsparticles/depcruise-config": "^3.4.2",
89-
"@tsparticles/eslint-config": "^3.4.2",
90-
"@tsparticles/prettier-config": "^3.4.2",
91-
"@tsparticles/tsconfig": "^3.4.2",
92-
"@tsparticles/webpack-plugin": "^3.4.2",
88+
"@tsparticles/depcruise-config": "^3.4.4",
89+
"@tsparticles/eslint-config": "^3.4.4",
90+
"@tsparticles/prettier-config": "^3.4.4",
91+
"@tsparticles/tsconfig": "^3.4.4",
92+
"@tsparticles/webpack-plugin": "^3.4.4",
9393
"@types/webpack-env": "^1.18.8",
9494
"browserslist": "^4.28.2",
9595
"copyfiles": "^2.4.1",

files/empty-project/tsconfig.umd.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/cli",
3-
"version": "3.4.0",
3+
"version": "3.4.2",
44
"license": "MIT",
55
"type": "module",
66
"bin": {
@@ -35,15 +35,15 @@
3535
},
3636
"dependencies": {
3737
"@swc/core": "^1.15.21",
38-
"@tsparticles/depcruise-config": "^3.4.2",
39-
"@tsparticles/eslint-config": "^3.4.2",
40-
"@tsparticles/prettier-config": "^3.4.2",
41-
"@tsparticles/tsconfig": "^3.4.2",
42-
"@tsparticles/webpack-plugin": "^3.4.2",
38+
"@tsparticles/depcruise-config": "^3.4.4",
39+
"@tsparticles/eslint-config": "^3.4.4",
40+
"@tsparticles/prettier-config": "^3.4.4",
41+
"@tsparticles/tsconfig": "^3.4.4",
42+
"@tsparticles/webpack-plugin": "^3.4.4",
4343
"commander": "^14.0.3",
4444
"eslint": "^10.1.0",
4545
"eslint-config-prettier": "^10.1.8",
46-
"eslint-plugin-jsdoc": "^62.8.1",
46+
"eslint-plugin-jsdoc": "^62.9.0",
4747
"eslint-plugin-prettier": "^5.5.5",
4848
"eslint-plugin-tsdoc": "^0.5.2",
4949
"klaw": "^4.1.0",

pnpm-lock.yaml

Lines changed: 57 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/build/build-distfiles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export async function buildDistFiles(basePath: string, silent: boolean): Promise
3232

3333
if (pkgInfo.dependencies) {
3434
libObj["dependencies"] = JSON.parse(JSON.stringify(pkgInfo.dependencies).replaceAll("workspace:", ""));
35-
} else if (pkgInfo.peerDependencies) {
35+
}
36+
37+
if (pkgInfo.peerDependencies) {
3638
libObj["peerDependencies"] = JSON.parse(JSON.stringify(pkgInfo.peerDependencies).replaceAll("workspace:", ""));
3739
}
3840

0 commit comments

Comments
 (0)