Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 00d738d

Browse files
committed
chore: update dependencies to latest stable versions
- Upgraded @nuxt/kit to 4.1.2 and @Tresjs/core to 5.0.0-rc.0. - Bumped mlly to 1.8.0, pkg-types to 2.3.0, and sirv to 3.0.2. - Updated devDependencies: @nuxt/devtools to 2.6.4, @nuxt/devtools-ui-kit to 2.6.4, @nuxt/eslint-config to 1.9.0, @nuxt/module-builder to 1.0.2, and @nuxt/schema to 4.1.2. - Updated vue to 3.5.21 and vue-tsc to 3.0.7. - Updated types for three to 0.180.0 and @vueuse/nuxt to 13.9.0. - Adjusted pnpm-lock.yaml to reflect these changes.
1 parent b86f224 commit 00d738d

3 files changed

Lines changed: 2217 additions & 2264 deletions

File tree

client/components/inspector/Props.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import type { TresObject } from '@tresjs/core'
3-
import { computed, watch } from 'vue'
3+
import { computed } from 'vue'
44
import { copyProp, copyValue, copyValueAsVector3, copyValueAsEuler, copyValueAsQuaternion } from '~/utils/clipboard'
55
66
import { iconsMap } from '../../utils/graph'
@@ -73,11 +73,6 @@ const keyProperties = computed(() => {
7373
}).filter(prop => prop.value !== undefined)
7474
})
7575
76-
watch(keyProperties, (newProps) => {
77-
// Ensure Vector3 properties are reactive
78-
console.log('Key properties updated:', newProps)
79-
}, { immediate: true })
80-
8176
/**
8277
* Get nested property value (e.g., position.x, rotation.y)
8378
*/

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -53,38 +53,38 @@
5353
"three": ">=0.133"
5454
},
5555
"dependencies": {
56-
"@nuxt/kit": "4.0.0",
57-
"@tresjs/core": "5.0.0-alpha.2",
56+
"@nuxt/kit": "4.1.2",
57+
"@tresjs/core": "5.0.0-rc.0",
5858
"defu": "^6.1.4",
59-
"mlly": "^1.7.4",
59+
"mlly": "^1.8.0",
6060
"ohash": "^2.0.11",
61-
"pkg-types": "^2.2.0",
62-
"sirv": "^3.0.1",
61+
"pkg-types": "^2.3.0",
62+
"sirv": "^3.0.2",
6363
"vite-plugin-glsl": "^1.5.1"
6464
},
6565
"devDependencies": {
66-
"@nuxt/devtools": "^2.6.2",
67-
"@nuxt/devtools-ui-kit": "^2.6.2",
68-
"@nuxt/eslint-config": "^1.5.2",
69-
"@nuxt/module-builder": "^1.0.1",
70-
"@nuxt/schema": "^4.0.0",
66+
"@nuxt/devtools": "^2.6.4",
67+
"@nuxt/devtools-ui-kit": "^2.6.4",
68+
"@nuxt/eslint-config": "^1.9.0",
69+
"@nuxt/module-builder": "^1.0.2",
70+
"@nuxt/schema": "^4.1.2",
7171
"@nuxt/test-utils": "^3.19.2",
72-
"@nuxt/ui-pro": "^3.2.0",
72+
"@nuxt/ui-pro": "^3.3.4",
7373
"@release-it/conventional-changelog": "^10.0.1",
74-
"@tresjs/cientos": "5.0.0-next.3",
74+
"@tresjs/cientos": "5.0.0-rc.0",
7575
"@tresjs/leches": "1.0.0-next.0",
7676
"@types/node": "^24.0.14",
77-
"@types/three": "^0.178.1",
78-
"@vueuse/nuxt": "13.5.0",
77+
"@types/three": "^0.180.0",
78+
"@vueuse/nuxt": "13.9.0",
7979
"eslint": "^9.31.0",
80-
"nuxt": "4.0.0",
80+
"nuxt": "4.1.2",
8181
"playwright": "^1.54.1",
8282
"release-it": "^19.0.4",
83-
"three": "^0.178.0",
83+
"three": "^0.180.0",
8484
"typescript": "^5.8.3",
8585
"vitest": "^3.2.4",
86-
"vue": "3.5.17",
87-
"vue-tsc": "^3.0.1"
86+
"vue": "3.5.21",
87+
"vue-tsc": "^3.0.7"
8888
},
8989
"build": {
9090
"externals": [

0 commit comments

Comments
 (0)