Skip to content

Commit 4fc4125

Browse files
authored
Merge pull request #1330 from galacean/chore/plugin-package-dependencies
chore: modify plugin package.json devDependencies to dependencies
2 parents 051f3d0 + 4472e62 commit 4fc4125

File tree

13 files changed

+40
-25
lines changed

13 files changed

+40
-25
lines changed

CHANGELOG-zh_CN.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88

99
---
1010

11+
## 1.6.10
12+
13+
`2025-12-23`
14+
15+
- Chore: modify plugin package.json devDependencies to dependencies. [#1330](https://github.com/galacean/effects-runtime/pull/1330) @wumaolinmaoan
16+
1117
## 1.6.9
1218

1319
`2024-11-08`

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
---
99

10+
## 1.6.10
11+
12+
`2025-12-23`
13+
14+
- Chore: modify plugin package.json devDependencies to dependencies. [#1330](https://github.com/galacean/effects-runtime/pull/1330) @wumaolinmaoan
15+
1016
## 1.6.9
1117

1218
`2024-11-08`

packages/effects-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-core",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects runtime core for the web",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",

packages/effects-helper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-helper",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects runtime helper for the web",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",
@@ -35,7 +35,7 @@
3535
"access": "public",
3636
"registry": "https://registry.npmjs.org"
3737
},
38-
"devDependencies": {
38+
"dependencies": {
3939
"@galacean/effects": "workspace:*"
4040
}
4141
}

packages/effects-threejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-threejs",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects runtime threejs plugin for the web",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",

packages/effects-webgl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-webgl",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects runtime webgl for the web",
55
"types": "./dist/index.d.ts",
66
"files": [

packages/effects/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects runtime player for the web",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",

plugin-packages/alipay-downgrade/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-plugin-alipay-downgrade",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects player downgrade plugin for Alipay",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",
@@ -46,7 +46,7 @@
4646
"access": "public",
4747
"registry": "https://registry.npmjs.org"
4848
},
49-
"devDependencies": {
49+
"dependencies": {
5050
"@galacean/effects": "workspace:*"
5151
}
5252
}

plugin-packages/editor-gizmo/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-plugin-editor-gizmo",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects player editor gizmo plugin",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",
@@ -39,8 +39,10 @@
3939
"access": "public",
4040
"registry": "https://registry.npmjs.org"
4141
},
42+
"dependencies": {
43+
"@galacean/effects": "workspace:*"
44+
},
4245
"devDependencies": {
43-
"@galacean/effects": "workspace:*",
4446
"@galacean/effects-plugin-model": "workspace:*"
4547
}
4648
}

plugin-packages/model/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@galacean/effects-plugin-model",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Galacean Effects player model plugin",
55
"module": "./dist/index.mjs",
66
"main": "./dist/index.js",
@@ -54,10 +54,10 @@
5454
"registry": "https://registry.npmjs.org"
5555
},
5656
"dependencies": {
57-
"@galacean/effects-helper": "workspace:*"
57+
"@galacean/effects-helper": "workspace:*",
58+
"@galacean/effects": "workspace:*"
5859
},
5960
"devDependencies": {
60-
"@galacean/effects": "workspace:*",
6161
"@galacean/effects-plugin-editor-gizmo": "workspace:*",
6262
"@vvfx/resource-detection": "0.4.2-alpha.22",
6363
"@types/hammerjs": "^2.0.45",

0 commit comments

Comments
 (0)