Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .tegami/publish-lock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
core:changelogs:
- content: "---\npackages:\n npm:@reactunity/scripts:\n type: minor\n---\n\n### Serve the web previewer without installing it\n\nThe dev server's previewer now works out of the box. Visiting the dev server address in a browser opens a Unity WebGL player running your UI, with no extra package to install.\n\nPreviously this required the optional `@reactunity/previewer` dependency, which shipped a ~107 MB Unity build in its npm tarball — a cost every install paid for a page many projects never opened. The build is now hosted on `reactunity.github.io` and fetched on first load, then cached by the browser. `@reactunity/previewer` is no longer used and has been dropped from `peerDependencies`; you can remove it from your project.\n\nBecause the build is fetched rather than bundled, the first load needs network access. To preview offline — or to preview your own Unity scene — put a previewer build in a `previewer` folder in your project so that `previewer/index.html` exists. The dev server serves that in preference to the built-in previewer, and your project's own `public` folder takes precedence over both.\n\nThe dev server also serves `/info.html`, explaining how to point Unity's `DevServer` property at it. That guidance used to be the page shown at `/`.\n\n### Fix the `previewer` folder override being ignored\n\nA custom previewer placed in a `previewer` folder was never actually served. The dev server read `paths.appPreviewer`, but that key was only defined when developing `react-unity-scripts` in its own repository — in a published install the path resolved to `undefined`, so the documented override silently did nothing.\n"
filename: 2026-07-28-a7f3c1.md
v: 0.0.0
core:packages:
- id: npm:@reactunity/monorepo
updated: false
- id: npm:@reactunity/create
updated: true
- id: npm:@reactunity/material
updated: true
- id: npm:@reactunity/renderer
updated: true
- changelogIds:
- 2026-07-28-a7f3c1.md
id: npm:@reactunity/scripts
updated: true
npm:packages:
- id: npm:@reactunity/monorepo
- id: npm:@reactunity/create
- id: npm:@reactunity/material
- id: npm:@reactunity/renderer
- id: npm:@reactunity/scripts
2 changes: 1 addition & 1 deletion packages/create/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactunity/create",
"version": "0.22.0",
"version": "0.23.0",
"description": "Scaffold a ReactUnity app using npm init",
"license": "MIT",
"//type": "ESM, as of the chalk 6 / commander 15 upgrade: both dropped CommonJS. index.ts is emitted next to itself as ESM, so `bin` keeps pointing at index.js.",
Expand Down
2 changes: 1 addition & 1 deletion packages/material/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactunity/material",
"version": "0.22.0",
"version": "0.23.0",
"description": "Material Design components and utilities for React Unity",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactunity/renderer",
"version": "0.22.0",
"version": "0.23.0",
"description": "React renderer for Unity3D",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
---
packages:
"npm:@reactunity/scripts": minor
---
## @reactunity/scripts@0.23.0

### Serve the web previewer without installing it

Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactunity/scripts",
"version": "0.22.0",
"version": "0.23.0",
"description": "Configuration and scripts for React Unity.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion unity/clearscript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/KurtGokhan"
},
"displayName": "React Unity ClearScript",
"version": "0.22.0",
"version": "0.23.0",
"unity": "2019.4",
"description": "ClearScript (V8) Plugin for ReactUnity",
"keywords": ["ReactUnity", "ClearScript", "V8"],
Expand Down
2 changes: 1 addition & 1 deletion unity/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/KurtGokhan"
},
"displayName": "React Unity",
"version": "0.22.0",
"version": "0.23.0",
"unity": "2021.3",
"description": "React renderer for Unity",
"keywords": ["React", "Framework", "UI", "UGUI", "UIToolkit"],
Expand Down
2 changes: 1 addition & 1 deletion unity/jint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/KurtGokhan"
},
"displayName": "React Unity Jint",
"version": "0.22.0",
"version": "0.23.0",
"unity": "2019.4",
"description": "Jint Plugin for ReactUnity",
"keywords": ["ReactUnity", "Jint"],
Expand Down
2 changes: 1 addition & 1 deletion unity/quickjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/KurtGokhan"
},
"displayName": "React Unity QuickJS",
"version": "0.22.0",
"version": "0.23.0",
"unity": "2019.4",
"description": "QuickJS Plugin for ReactUnity",
"keywords": ["ReactUnity", "QuickJS"],
Expand Down