From 52277548d394a032577ce107dac8888ef8fb804c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 15 Oct 2024 05:11:54 +0000 Subject: [PATCH] chore(changeset): release packages --- .changeset/kind-parrots-grin.md | 9 ----- .changeset/thin-planes-guess.md | 5 --- .changeset/wet-toes-agree.md | 5 --- .changeset/witty-clouds-pay.md | 5 --- examples/three-node-cjs-example/package.json | 2 +- examples/three-node-esm-example/package.json | 2 +- examples/three-vite-example/package.json | 2 +- .../three-vite-worker-example/package.json | 2 +- packages/recast-navigation-core/CHANGELOG.md | 26 ++++++++------ packages/recast-navigation-core/package.json | 4 +-- .../recast-navigation-generators/CHANGELOG.md | 12 +++++-- .../recast-navigation-generators/package.json | 6 ++-- .../recast-navigation-playcanvas/CHANGELOG.md | 8 +++++ .../recast-navigation-playcanvas/package.json | 6 ++-- packages/recast-navigation-three/CHANGELOG.md | 13 +++++++ packages/recast-navigation-three/package.json | 6 ++-- packages/recast-navigation-wasm/CHANGELOG.md | 4 ++- packages/recast-navigation-wasm/package.json | 2 +- packages/recast-navigation/CHANGELOG.md | 36 +++++++++++++------ packages/recast-navigation/package.json | 6 ++-- yarn.lock | 34 +++++++++--------- 21 files changed, 112 insertions(+), 83 deletions(-) delete mode 100644 .changeset/kind-parrots-grin.md delete mode 100644 .changeset/thin-planes-guess.md delete mode 100644 .changeset/wet-toes-agree.md delete mode 100644 .changeset/witty-clouds-pay.md diff --git a/.changeset/kind-parrots-grin.md b/.changeset/kind-parrots-grin.md deleted file mode 100644 index 698bf31e..00000000 --- a/.changeset/kind-parrots-grin.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'recast-navigation': minor ---- - -feat: remove 'three' entrypoint from 'recast-navigation' package - -To make way for adding other integration packages without bloating the `recast-navigation` package, the `recast-navigation/three` entrypoint has been removed. - -If you are importing from `recast-navigation/three`, simply install and import from `@recast/navigation-three` instead. diff --git a/.changeset/thin-planes-guess.md b/.changeset/thin-planes-guess.md deleted file mode 100644 index 60a641e8..00000000 --- a/.changeset/thin-planes-guess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@recast-navigation/three': minor ---- - -feat: change three debug helpers to take required params as standalone constructor arguments diff --git a/.changeset/wet-toes-agree.md b/.changeset/wet-toes-agree.md deleted file mode 100644 index c56dc10d..00000000 --- a/.changeset/wet-toes-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@recast-navigation/generators': patch ---- - -feat: add mergePositionsAndIndices diff --git a/.changeset/witty-clouds-pay.md b/.changeset/witty-clouds-pay.md deleted file mode 100644 index f31a3f9f..00000000 --- a/.changeset/witty-clouds-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@recast-navigation/three': minor ---- - -feat: avoid cloning meshes and geometry in getPositionsAndIndices diff --git a/examples/three-node-cjs-example/package.json b/examples/three-node-cjs-example/package.json index 2f18c3a7..06f0374c 100644 --- a/examples/three-node-cjs-example/package.json +++ b/examples/three-node-cjs-example/package.json @@ -9,7 +9,7 @@ "author": "", "license": "ISC", "dependencies": { - "recast-navigation": "0.34.0", + "recast-navigation": "0.35.0", "three": "^0.167.1" }, "devDependencies": { diff --git a/examples/three-node-esm-example/package.json b/examples/three-node-esm-example/package.json index 4fd640f9..1011473d 100644 --- a/examples/three-node-esm-example/package.json +++ b/examples/three-node-esm-example/package.json @@ -10,7 +10,7 @@ "author": "", "license": "ISC", "dependencies": { - "recast-navigation": "0.34.0", + "recast-navigation": "0.35.0", "three": "^0.167.1" }, "devDependencies": { diff --git a/examples/three-vite-example/package.json b/examples/three-vite-example/package.json index 24c6b3a0..6ac880a4 100644 --- a/examples/three-vite-example/package.json +++ b/examples/three-vite-example/package.json @@ -8,7 +8,7 @@ "preview": "vite preview" }, "dependencies": { - "recast-navigation": "0.34.0", + "recast-navigation": "0.35.0", "three": "^0.169.0" }, "devDependencies": { diff --git a/examples/three-vite-worker-example/package.json b/examples/three-vite-worker-example/package.json index 4697370d..a71ba5cb 100644 --- a/examples/three-vite-worker-example/package.json +++ b/examples/three-vite-worker-example/package.json @@ -8,7 +8,7 @@ "preview": "vite preview" }, "dependencies": { - "recast-navigation": "0.34.0", + "recast-navigation": "0.35.0", "three": "^0.167.1" }, "devDependencies": { diff --git a/packages/recast-navigation-core/CHANGELOG.md b/packages/recast-navigation-core/CHANGELOG.md index ce3e6e72..5cace512 100644 --- a/packages/recast-navigation-core/CHANGELOG.md +++ b/packages/recast-navigation-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @recast-navigation/core +## 0.35.0 + +### Patch Changes + +- @recast-navigation/wasm@0.35.0 + ## 0.34.0 ### Patch Changes @@ -178,7 +184,7 @@ old usage: ```ts - import { NavMesh, Crowd, NavMeshQuery } from "recast-navigation"; + import { NavMesh, Crowd, NavMeshQuery } from 'recast-navigation'; const navMesh = new NavMesh(); @@ -194,7 +200,7 @@ new usage: ```ts - import { NavMesh, Crowd, NavMeshQuery } from "recast-navigation"; + import { NavMesh, Crowd, NavMeshQuery } from 'recast-navigation'; const navMesh = new NavMesh(); @@ -219,10 +225,10 @@ Note that the other `wasm` flavor currently does not support node.js environments. ```ts - import { init } from "recast-navigation"; + import { init } from 'recast-navigation'; // import the 'wasm' flavor - has a separate wasm file, not inlined - import RecastWasm from "@recast-navigation/wasm/wasm"; + import RecastWasm from '@recast-navigation/wasm/wasm'; await init(RecastWasm); ``` @@ -230,7 +236,7 @@ It's still possible to use the inlined wasm flavor by not passing anything to `init` as before. ```ts - import { init } from "recast-navigation"; + import { init } from 'recast-navigation'; // internally dynamically imports `@recast-navigation/wasm` await init(); @@ -279,7 +285,7 @@ usage changed from: ```ts - import { Arrays } from "@recast-navigation/core"; + import { Arrays } from '@recast-navigation/core'; Arrays.VertsArray; Arrays.TrisArray; @@ -297,7 +303,7 @@ TringleAreasArray, ChunkIdsArray, TileCacheData, - } from "@recast-navigation/core"; + } from '@recast-navigation/core'; ``` The `.copy` method now directly copies the data from the source array to the emscripten heap. This should improve performance when copying large arrays. @@ -357,7 +363,7 @@ ```ts const path = navMeshQuery.computePath( { x: 0, y: 0, z: 0 }, // start position - { x: 2, y: 0, z: 0 }, // end position + { x: 2, y: 0, z: 0 } // end position ); ``` @@ -366,7 +372,7 @@ ```ts const { success, error, path } = navMeshQuery.computePath( { x: 0, y: 0, z: 0 }, // start position - { x: 2, y: 0, z: 0 }, // end position + { x: 2, y: 0, z: 0 } // end position ); ``` @@ -428,7 +434,7 @@ const { success, status, obstacle } = tileCache.addBoxObstacle( position, extent, - angle, + angle ); ``` diff --git a/packages/recast-navigation-core/package.json b/packages/recast-navigation-core/package.json index d5d2c523..bc9740aa 100644 --- a/packages/recast-navigation-core/package.json +++ b/packages/recast-navigation-core/package.json @@ -6,7 +6,7 @@ "email": "isaac@isaacmason.com", "url": "https://isaacmason.com/" }, - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { @@ -27,7 +27,7 @@ "lint": "eslint src" }, "dependencies": { - "@recast-navigation/wasm": "0.34.0" + "@recast-navigation/wasm": "0.35.0" }, "devDependencies": { "@babel/core": "^7.24.5", diff --git a/packages/recast-navigation-generators/CHANGELOG.md b/packages/recast-navigation-generators/CHANGELOG.md index a2c20e61..9dd86c6b 100644 --- a/packages/recast-navigation-generators/CHANGELOG.md +++ b/packages/recast-navigation-generators/CHANGELOG.md @@ -1,5 +1,13 @@ # @recast-navigation/generators +## 0.35.0 + +### Patch Changes + +- 4e63338: feat: add mergePositionsAndIndices + - @recast-navigation/core@0.35.0 + - @recast-navigation/wasm@0.35.0 + ## 0.34.0 ### Patch Changes @@ -116,7 +124,7 @@ usage changed from: ```ts - import { Arrays } from "@recast-navigation/core"; + import { Arrays } from '@recast-navigation/core'; Arrays.VertsArray; Arrays.TrisArray; @@ -134,7 +142,7 @@ TringleAreasArray, ChunkIdsArray, TileCacheData, - } from "@recast-navigation/core"; + } from '@recast-navigation/core'; ``` The `.copy` method now directly copies the data from the source array to the emscripten heap. This should improve performance when copying large arrays. diff --git a/packages/recast-navigation-generators/package.json b/packages/recast-navigation-generators/package.json index 608d810f..4cef1d29 100644 --- a/packages/recast-navigation-generators/package.json +++ b/packages/recast-navigation-generators/package.json @@ -6,7 +6,7 @@ "email": "isaac@isaacmason.com", "url": "https://isaacmason.com/" }, - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { @@ -27,8 +27,8 @@ "lint": "eslint src" }, "dependencies": { - "@recast-navigation/core": "0.34.0", - "@recast-navigation/wasm": "0.34.0" + "@recast-navigation/core": "0.35.0", + "@recast-navigation/wasm": "0.35.0" }, "devDependencies": { "@babel/core": "^7.24.5", diff --git a/packages/recast-navigation-playcanvas/CHANGELOG.md b/packages/recast-navigation-playcanvas/CHANGELOG.md index c9701871..b2d02549 100644 --- a/packages/recast-navigation-playcanvas/CHANGELOG.md +++ b/packages/recast-navigation-playcanvas/CHANGELOG.md @@ -1,5 +1,13 @@ # @recast-navigation/playcanvas +## 0.35.0 + +### Patch Changes + +- Updated dependencies [4e63338] + - @recast-navigation/generators@0.35.0 + - @recast-navigation/core@0.35.0 + ## 1.0.0 - Initial release! diff --git a/packages/recast-navigation-playcanvas/package.json b/packages/recast-navigation-playcanvas/package.json index 4d78b203..8f99fee6 100644 --- a/packages/recast-navigation-playcanvas/package.json +++ b/packages/recast-navigation-playcanvas/package.json @@ -1,7 +1,7 @@ { "name": "@recast-navigation/playcanvas", "description": "Utilities for using recast-navigation with PlayCanvas", - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { @@ -22,8 +22,8 @@ "lint": "eslint src" }, "dependencies": { - "@recast-navigation/core": "0.34.0", - "@recast-navigation/generators": "0.34.0" + "@recast-navigation/core": "0.35.0", + "@recast-navigation/generators": "0.35.0" }, "devDependencies": { "@babel/core": "^7.24.5", diff --git a/packages/recast-navigation-three/CHANGELOG.md b/packages/recast-navigation-three/CHANGELOG.md index 81edb84d..d5acb674 100644 --- a/packages/recast-navigation-three/CHANGELOG.md +++ b/packages/recast-navigation-three/CHANGELOG.md @@ -1,5 +1,18 @@ # @recast-navigation/three +## 0.35.0 + +### Minor Changes + +- f9a09a2: feat: change three debug helpers to take required params as standalone constructor arguments +- 4e63338: feat: avoid cloning meshes and geometry in getPositionsAndIndices + +### Patch Changes + +- Updated dependencies [4e63338] + - @recast-navigation/generators@0.35.0 + - @recast-navigation/core@0.35.0 + ## 0.34.0 ### Minor Changes diff --git a/packages/recast-navigation-three/package.json b/packages/recast-navigation-three/package.json index 6de4051a..fd987c5d 100644 --- a/packages/recast-navigation-three/package.json +++ b/packages/recast-navigation-three/package.json @@ -6,7 +6,7 @@ "email": "isaac@isaacmason.com", "url": "https://isaacmason.com/" }, - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { @@ -27,8 +27,8 @@ "lint": "eslint src" }, "dependencies": { - "@recast-navigation/core": "0.34.0", - "@recast-navigation/generators": "0.34.0" + "@recast-navigation/core": "0.35.0", + "@recast-navigation/generators": "0.35.0" }, "peerDependencies": { "@types/three": "0.x.x", diff --git a/packages/recast-navigation-wasm/CHANGELOG.md b/packages/recast-navigation-wasm/CHANGELOG.md index 7fe157fe..67255a25 100644 --- a/packages/recast-navigation-wasm/CHANGELOG.md +++ b/packages/recast-navigation-wasm/CHANGELOG.md @@ -1,5 +1,7 @@ # @recast-navigation/wasm +## 0.35.0 + ## 0.34.0 ## 0.33.0 @@ -88,7 +90,7 @@ const { success, status, obstacle } = tileCache.addBoxObstacle( position, extent, - angle, + angle ); ``` diff --git a/packages/recast-navigation-wasm/package.json b/packages/recast-navigation-wasm/package.json index 526c19b2..fd4fa475 100644 --- a/packages/recast-navigation-wasm/package.json +++ b/packages/recast-navigation-wasm/package.json @@ -6,7 +6,7 @@ "email": "isaac@isaacmason.com", "url": "https://isaacmason.com/" }, - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { diff --git a/packages/recast-navigation/CHANGELOG.md b/packages/recast-navigation/CHANGELOG.md index e58f9560..2af9144e 100644 --- a/packages/recast-navigation/CHANGELOG.md +++ b/packages/recast-navigation/CHANGELOG.md @@ -1,5 +1,21 @@ # recast-navigation +## 0.35.0 + +### Minor Changes + +- 4916d03: feat: remove 'three' entrypoint from 'recast-navigation' package + + To make way for adding other integration packages without bloating the `recast-navigation` package, the `recast-navigation/three` entrypoint has been removed. + + If you are importing from `recast-navigation/three`, simply install and import from `@recast/navigation-three` instead. + +### Patch Changes + +- Updated dependencies [4e63338] + - @recast-navigation/generators@0.35.0 + - @recast-navigation/core@0.35.0 + ## 0.34.0 ### Patch Changes @@ -212,7 +228,7 @@ old usage: ```ts - import { NavMesh, Crowd, NavMeshQuery } from "recast-navigation"; + import { NavMesh, Crowd, NavMeshQuery } from 'recast-navigation'; const navMesh = new NavMesh(); @@ -228,7 +244,7 @@ new usage: ```ts - import { NavMesh, Crowd, NavMeshQuery } from "recast-navigation"; + import { NavMesh, Crowd, NavMeshQuery } from 'recast-navigation'; const navMesh = new NavMesh(); @@ -253,10 +269,10 @@ Note that the other `wasm` flavor currently does not support node.js environments. ```ts - import { init } from "recast-navigation"; + import { init } from 'recast-navigation'; // import the 'wasm' flavor - has a separate wasm file, not inlined - import RecastWasm from "@recast-navigation/wasm/wasm"; + import RecastWasm from '@recast-navigation/wasm/wasm'; await init(RecastWasm); ``` @@ -264,7 +280,7 @@ It's still possible to use the inlined wasm flavor by not passing anything to `init` as before. ```ts - import { init } from "recast-navigation"; + import { init } from 'recast-navigation'; // internally dynamically imports `@recast-navigation/wasm` await init(); @@ -324,7 +340,7 @@ usage changed from: ```ts - import { Arrays } from "@recast-navigation/core"; + import { Arrays } from '@recast-navigation/core'; Arrays.VertsArray; Arrays.TrisArray; @@ -342,7 +358,7 @@ TringleAreasArray, ChunkIdsArray, TileCacheData, - } from "@recast-navigation/core"; + } from '@recast-navigation/core'; ``` The `.copy` method now directly copies the data from the source array to the emscripten heap. This should improve performance when copying large arrays. @@ -420,7 +436,7 @@ ```ts const path = navMeshQuery.computePath( { x: 0, y: 0, z: 0 }, // start position - { x: 2, y: 0, z: 0 }, // end position + { x: 2, y: 0, z: 0 } // end position ); ``` @@ -429,7 +445,7 @@ ```ts const { success, error, path } = navMeshQuery.computePath( { x: 0, y: 0, z: 0 }, // start position - { x: 2, y: 0, z: 0 }, // end position + { x: 2, y: 0, z: 0 } // end position ); ``` @@ -505,7 +521,7 @@ const { success, status, obstacle } = tileCache.addBoxObstacle( position, extent, - angle, + angle ); ``` diff --git a/packages/recast-navigation/package.json b/packages/recast-navigation/package.json index b0980656..68815690 100644 --- a/packages/recast-navigation/package.json +++ b/packages/recast-navigation/package.json @@ -18,7 +18,7 @@ "email": "isaac@isaacmason.com", "url": "https://isaacmason.com/" }, - "version": "0.34.0", + "version": "0.35.0", "license": "MIT", "homepage": "https://github.com/isaac-mason/recast-navigation-js", "bugs": { @@ -59,8 +59,8 @@ "lint": "eslint src" }, "dependencies": { - "@recast-navigation/core": "0.34.0", - "@recast-navigation/generators": "0.34.0" + "@recast-navigation/core": "0.35.0", + "@recast-navigation/generators": "0.35.0" }, "devDependencies": { "@babel/core": "^7.24.5", diff --git a/yarn.lock b/yarn.lock index 4a193771..d13583a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3957,7 +3957,7 @@ __metadata: languageName: node linkType: hard -"@recast-navigation/core@npm:0.34.0, @recast-navigation/core@workspace:packages/recast-navigation-core": +"@recast-navigation/core@npm:0.35.0, @recast-navigation/core@workspace:packages/recast-navigation-core": version: 0.0.0-use.local resolution: "@recast-navigation/core@workspace:packages/recast-navigation-core" dependencies: @@ -3965,7 +3965,7 @@ __metadata: "@babel/preset-env": "npm:^7.24.5" "@babel/preset-typescript": "npm:^7.24.1" "@isaac-mason/eslint-config-typescript": "npm:^0.0.9" - "@recast-navigation/wasm": "npm:0.34.0" + "@recast-navigation/wasm": "npm:0.35.0" "@rollup/plugin-babel": "npm:^6.0.4" "@rollup/plugin-commonjs": "npm:^25.0.7" "@rollup/plugin-node-resolve": "npm:^15.0.1" @@ -3982,7 +3982,7 @@ __metadata: languageName: unknown linkType: soft -"@recast-navigation/generators@npm:0.34.0, @recast-navigation/generators@workspace:packages/recast-navigation-generators": +"@recast-navigation/generators@npm:0.35.0, @recast-navigation/generators@workspace:packages/recast-navigation-generators": version: 0.0.0-use.local resolution: "@recast-navigation/generators@workspace:packages/recast-navigation-generators" dependencies: @@ -3990,8 +3990,8 @@ __metadata: "@babel/preset-env": "npm:^7.24.5" "@babel/preset-typescript": "npm:^7.24.1" "@isaac-mason/eslint-config-typescript": "npm:^0.0.9" - "@recast-navigation/core": "npm:0.34.0" - "@recast-navigation/wasm": "npm:0.34.0" + "@recast-navigation/core": "npm:0.35.0" + "@recast-navigation/wasm": "npm:0.35.0" "@rollup/plugin-babel": "npm:^6.0.4" "@rollup/plugin-commonjs": "npm:^25.0.7" "@rollup/plugin-node-resolve": "npm:^15.0.1" @@ -4014,8 +4014,8 @@ __metadata: "@babel/preset-env": "npm:^7.24.5" "@babel/preset-typescript": "npm:^7.24.1" "@isaac-mason/eslint-config-typescript": "npm:^0.0.9" - "@recast-navigation/core": "npm:0.34.0" - "@recast-navigation/generators": "npm:0.34.0" + "@recast-navigation/core": "npm:0.35.0" + "@recast-navigation/generators": "npm:0.35.0" "@rollup/plugin-babel": "npm:^6.0.4" "@rollup/plugin-commonjs": "npm:^25.0.7" "@rollup/plugin-node-resolve": "npm:^15.0.1" @@ -4041,8 +4041,8 @@ __metadata: "@babel/preset-env": "npm:^7.24.5" "@babel/preset-typescript": "npm:^7.24.1" "@isaac-mason/eslint-config-typescript": "npm:^0.0.9" - "@recast-navigation/core": "npm:0.34.0" - "@recast-navigation/generators": "npm:0.34.0" + "@recast-navigation/core": "npm:0.35.0" + "@recast-navigation/generators": "npm:0.35.0" "@rollup/plugin-babel": "npm:^6.0.4" "@rollup/plugin-commonjs": "npm:^25.0.7" "@rollup/plugin-node-resolve": "npm:^15.0.1" @@ -4062,7 +4062,7 @@ __metadata: languageName: unknown linkType: soft -"@recast-navigation/wasm@npm:0.34.0, @recast-navigation/wasm@workspace:packages/recast-navigation-wasm": +"@recast-navigation/wasm@npm:0.35.0, @recast-navigation/wasm@workspace:packages/recast-navigation-wasm": version: 0.0.0-use.local resolution: "@recast-navigation/wasm@workspace:packages/recast-navigation-wasm" dependencies: @@ -13560,7 +13560,7 @@ __metadata: languageName: unknown linkType: soft -"recast-navigation@npm:0.34.0, recast-navigation@workspace:*, recast-navigation@workspace:^, recast-navigation@workspace:packages/recast-navigation": +"recast-navigation@npm:0.35.0, recast-navigation@workspace:*, recast-navigation@workspace:^, recast-navigation@workspace:packages/recast-navigation": version: 0.0.0-use.local resolution: "recast-navigation@workspace:packages/recast-navigation" dependencies: @@ -13572,8 +13572,8 @@ __metadata: "@pmndrs/assets": "npm:^1.6.0" "@react-three/drei": "npm:^9.105.4" "@react-three/fiber": "npm:^8.16.3" - "@recast-navigation/core": "npm:0.34.0" - "@recast-navigation/generators": "npm:0.34.0" + "@recast-navigation/core": "npm:0.35.0" + "@recast-navigation/generators": "npm:0.35.0" "@rollup/plugin-babel": "npm:^6.0.4" "@rollup/plugin-commonjs": "npm:^25.0.7" "@rollup/plugin-node-resolve": "npm:^15.0.1" @@ -14831,7 +14831,7 @@ __metadata: resolution: "three-node-cjs-example@workspace:examples/three-node-cjs-example" dependencies: "@types/three": "npm:^0.167.1" - recast-navigation: "npm:0.34.0" + recast-navigation: "npm:0.35.0" three: "npm:^0.167.1" languageName: unknown linkType: soft @@ -14841,7 +14841,7 @@ __metadata: resolution: "three-node-esm-example@workspace:examples/three-node-esm-example" dependencies: "@types/three": "npm:^0.167.1" - recast-navigation: "npm:0.34.0" + recast-navigation: "npm:0.35.0" three: "npm:^0.167.1" languageName: unknown linkType: soft @@ -14887,7 +14887,7 @@ __metadata: resolution: "three-vite-example@workspace:examples/three-vite-example" dependencies: "@types/three": "npm:^0.169.0" - recast-navigation: "npm:0.34.0" + recast-navigation: "npm:0.35.0" three: "npm:^0.169.0" typescript: "npm:^5.4.3" vite: "npm:^5.4.8" @@ -14899,7 +14899,7 @@ __metadata: resolution: "three-vite-worker-example@workspace:examples/three-vite-worker-example" dependencies: "@types/three": "npm:^0.169.0" - recast-navigation: "npm:0.34.0" + recast-navigation: "npm:0.35.0" three: "npm:^0.167.1" typescript: "npm:^5.4.3" vite: "npm:^5.4.8"