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
14 changes: 0 additions & 14 deletions .changeset/fix-bun-package-exports.md

This file was deleted.

19 changes: 19 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @hotrepl/cli

## 3.0.2

### Patch Changes

- [#6](https://github.com/glockyco/HotRepl/pull/6)
[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)
Thanks [@glockyco](https://github.com/glockyco)! - Fix Bun package exports in published npm
packages.

The 4.0.0/3.0.1 packages declared a Bun-specific export target of `./src/index.ts`, but npm
packages only published `dist/`. Bun prefers the `bun` export condition, so Bun consumers could
not import `@hotrepl/sdk` or the other public packages from npm. Published Bun entrypoints now
target the built `dist/index.js` files, and the test gate builds packages before tests so
workspace package imports exercise the same public entrypoint shape.

- Updated dependencies
[[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)]:
- @hotrepl/[email protected]

## 3.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hotrepl/cli",
"version": "3.0.1",
"version": "3.0.2",
"description": "HotRepl v2 command-line client — inspect and automate a running Unity game's REPL from your shell.",
"keywords": [
"hotrepl",
Expand Down Expand Up @@ -43,7 +43,7 @@
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@hotrepl/sdk": "4.0.0"
"@hotrepl/sdk": "4.0.1"
},
"devDependencies": {
"@hotrepl/testing": "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/conformance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@hotrepl/protocol": "4.0.0",
"@hotrepl/sdk": "4.0.0",
"@hotrepl/protocol": "4.0.1",
"@hotrepl/sdk": "4.0.1",
"@hotrepl/testing": "2.0.0"
}
}
19 changes: 19 additions & 0 deletions packages/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @hotrepl/mcp

## 3.0.2

### Patch Changes

- [#6](https://github.com/glockyco/HotRepl/pull/6)
[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)
Thanks [@glockyco](https://github.com/glockyco)! - Fix Bun package exports in published npm
packages.

The 4.0.0/3.0.1 packages declared a Bun-specific export target of `./src/index.ts`, but npm
packages only published `dist/`. Bun prefers the `bun` export condition, so Bun consumers could
not import `@hotrepl/sdk` or the other public packages from npm. Published Bun entrypoints now
target the built `dist/index.js` files, and the test gate builds packages before tests so
workspace package imports exercise the same public entrypoint shape.

- Updated dependencies
[[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)]:
- @hotrepl/[email protected]

## 3.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hotrepl/mcp",
"version": "3.0.1",
"version": "3.0.2",
"description": "HotRepl v2 MCP stdio server — expose a running Unity game's REPL and typed commands to MCP-enabled agents.",
"keywords": [
"hotrepl",
Expand Down Expand Up @@ -43,7 +43,7 @@
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@hotrepl/sdk": "4.0.0",
"@hotrepl/sdk": "4.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.0.0"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @hotrepl/protocol

## 4.0.1

### Patch Changes

- [#6](https://github.com/glockyco/HotRepl/pull/6)
[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)
Thanks [@glockyco](https://github.com/glockyco)! - Fix Bun package exports in published npm
packages.

The 4.0.0/3.0.1 packages declared a Bun-specific export target of `./src/index.ts`, but npm
packages only published `dist/`. Bun prefers the `bun` export condition, so Bun consumers could
not import `@hotrepl/sdk` or the other public packages from npm. Published Bun entrypoints now
target the built `dist/index.js` files, and the test gate builds packages before tests so
workspace package imports exercise the same public entrypoint shape.

## 4.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hotrepl/protocol",
"version": "4.0.0",
"version": "4.0.1",
"description": "Canonical HotRepl v2 wire protocol types and JSON Schemas.",
"keywords": [
"hotrepl",
Expand Down
19 changes: 19 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @hotrepl/sdk

## 4.0.1

### Patch Changes

- [#6](https://github.com/glockyco/HotRepl/pull/6)
[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)
Thanks [@glockyco](https://github.com/glockyco)! - Fix Bun package exports in published npm
packages.

The 4.0.0/3.0.1 packages declared a Bun-specific export target of `./src/index.ts`, but npm
packages only published `dist/`. Bun prefers the `bun` export condition, so Bun consumers could
not import `@hotrepl/sdk` or the other public packages from npm. Published Bun entrypoints now
target the built `dist/index.js` files, and the test gate builds packages before tests so
workspace package imports exercise the same public entrypoint shape.

- Updated dependencies
[[`9199584`](https://github.com/glockyco/HotRepl/commit/919958438318a1cfc03fca37d25b7ce0b2200b8c)]:
- @hotrepl/[email protected]

## 4.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hotrepl/sdk",
"version": "4.0.0",
"version": "4.0.1",
"description": "Canonical TypeScript SDK for HotRepl v2 runtimes.",
"keywords": [
"hotrepl",
Expand Down Expand Up @@ -41,7 +41,7 @@
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@hotrepl/protocol": "4.0.0"
"@hotrepl/protocol": "4.0.1"
},
"devDependencies": {
"@hotrepl/testing": "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@hotrepl/protocol": "4.0.0",
"@hotrepl/sdk": "4.0.0"
"@hotrepl/protocol": "4.0.1",
"@hotrepl/sdk": "4.0.1"
}
}