diff --git a/.changeset/large-rules-tease.md b/.changeset/large-rules-tease.md deleted file mode 100644 index a6e1a9d2c..000000000 --- a/.changeset/large-rules-tease.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@quick-threejs/reactive": patch -"@quick-threejs/config": patch -"@quick-threejs/utils": patch ---- - -# Logs - -## Build utils with `tsup` - -- Build `@quick-three/utils` with `tsup` -- Add a shred `tsup` config at `@quick-three/configs/tsup.js` diff --git a/packages/reactive/CHANGELOG.md b/packages/reactive/CHANGELOG.md index 277046f08..704f63836 100644 --- a/packages/reactive/CHANGELOG.md +++ b/packages/reactive/CHANGELOG.md @@ -1,5 +1,19 @@ # @quick-threejs/reactive +## 0.1.18 + +### Patch Changes + +- 0c42a30: # Logs + + ## Build utils with `tsup` + + - Build `@quick-three/utils` with `tsup` + - Add a shred `tsup` config at `@quick-three/configs/tsup.js` + +- Updated dependencies [0c42a30] + - @quick-threejs/utils@0.1.12 + ## 1.0.1 ### Patch Changes diff --git a/packages/reactive/package.json b/packages/reactive/package.json index b49f7d780..251d87547 100644 --- a/packages/reactive/package.json +++ b/packages/reactive/package.json @@ -1,6 +1,6 @@ { "name": "@quick-threejs/reactive", - "version": "0.1.17", + "version": "0.1.18", "description": "Reactively quick start a three.js app ⚡️", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dfd2ae1ce..51e343c0a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -260,6 +260,9 @@ importers: '@types/three': specifier: ^0.169.0 version: 0.169.0 + reflect-metadata: + specifier: ^0.2.2 + version: 0.2.2 tsyringe: specifier: ^4.8.0 version: 4.8.0 diff --git a/samples/with-reactive/CHANGELOG.md b/samples/with-reactive/CHANGELOG.md index 439f62f4f..8fde01dbc 100644 --- a/samples/with-reactive/CHANGELOG.md +++ b/samples/with-reactive/CHANGELOG.md @@ -1,5 +1,12 @@ # with-reactive +## 0.0.10 + +### Patch Changes + +- Updated dependencies [0c42a30] + - @quick-threejs/reactive@0.1.18 + ## 0.0.9 ### Patch Changes diff --git a/samples/with-reactive/package.json b/samples/with-reactive/package.json index c6310b202..2e365c771 100644 --- a/samples/with-reactive/package.json +++ b/samples/with-reactive/package.json @@ -1,7 +1,7 @@ { "name": "with-reactive", "private": true, - "version": "0.0.9", + "version": "0.0.10", "type": "module", "scripts": { "dev": "vite --host", diff --git a/shared/config/CHANGELOG.md b/shared/config/CHANGELOG.md index e543a8595..649fbdb09 100644 --- a/shared/config/CHANGELOG.md +++ b/shared/config/CHANGELOG.md @@ -1,5 +1,16 @@ # @quick-threejs/config +## 0.1.12 + +### Patch Changes + +- 0c42a30: # Logs + + ## Build utils with `tsup` + + - Build `@quick-three/utils` with `tsup` + - Add a shred `tsup` config at `@quick-three/configs/tsup.js` + ## 0.1.11 ### Patch Changes diff --git a/shared/config/package.json b/shared/config/package.json index 58efec2d8..49da05443 100644 --- a/shared/config/package.json +++ b/shared/config/package.json @@ -1,6 +1,6 @@ { "name": "@quick-threejs/config", - "version": "0.1.11", + "version": "0.1.12", "types": "./**", "files": [ "./**" diff --git a/shared/utils/CHANGELOG.md b/shared/utils/CHANGELOG.md index de9c80344..4f5f108ed 100644 --- a/shared/utils/CHANGELOG.md +++ b/shared/utils/CHANGELOG.md @@ -1,5 +1,16 @@ # @quick-threejs/utils +## 0.1.12 + +### Patch Changes + +- 0c42a30: # Logs + + ## Build utils with `tsup` + + - Build `@quick-three/utils` with `tsup` + - Add a shred `tsup` config at `@quick-three/configs/tsup.js` + ## 0.1.11 ### Patch Changes diff --git a/shared/utils/package.json b/shared/utils/package.json index 422ed51f7..31dd99f0d 100644 --- a/shared/utils/package.json +++ b/shared/utils/package.json @@ -1,10 +1,11 @@ { "name": "@quick-threejs/utils", - "version": "0.1.11", + "version": "0.1.12", "files": [ - "./dist/**" + "dist" ], "main": "./dist/main.js", + "module": "./dist/main.mjs", "types": "./dist/main.d.ts", "scripts": { "prepare": "npm run build", @@ -16,6 +17,7 @@ "@quick-threejs/config": "workspace:*", "@types/node": "^22.9.0", "@types/three": "^0.169.0", + "reflect-metadata": "^0.2.2", "tsyringe": "^4.8.0", "typescript": "^5.6.3", "vite": "^5.4.11" diff --git a/shared/utils/src/main.ts b/shared/utils/src/main.ts index 00f69669f..6b010ba79 100644 --- a/shared/utils/src/main.ts +++ b/shared/utils/src/main.ts @@ -1,7 +1,10 @@ +import "reflect-metadata"; + +export * from "./proxy/"; +export * from "./types/"; +export * from "./worker/"; + export * from "./hardware"; export * from "./material"; export * from "./object"; -export * from "./proxy"; export * from "./type"; -export * from "./types"; -export * from "./worker";