Skip to content

Commit

Permalink
chore(pre-release): merge #251 from changeset-release/master
Browse files Browse the repository at this point in the history
### Logs

- chore(version): upgrade packages
  • Loading branch information
Neosoulink authored Nov 28, 2024
2 parents ee5c6fc + 13646f7 commit 9e8cd22
Show file tree
Hide file tree
Showing 11 changed files with 59 additions and 20 deletions.
12 changes: 0 additions & 12 deletions .changeset/large-rules-tease.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/reactive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions samples/with-reactive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion samples/with-reactive/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "with-reactive",
"private": true,
"version": "0.0.9",
"version": "0.0.10",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
11 changes: 11 additions & 0 deletions shared/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion shared/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quick-threejs/config",
"version": "0.1.11",
"version": "0.1.12",
"types": "./**",
"files": [
"./**"
Expand Down
11 changes: 11 additions & 0 deletions shared/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions shared/utils/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down
9 changes: 6 additions & 3 deletions shared/utils/src/main.ts
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit 9e8cd22

Please sign in to comment.