chore: release packages (#375)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-12-28 14:11:27 +08:00
committed by GitHub
parent a000cc07d7
commit 838cda91aa
7 changed files with 33 additions and 18 deletions

View File

@@ -1,15 +0,0 @@
---
"@esengine/rpc": patch
---
feat: export RpcClient and connect from main entry point
Re-export `RpcClient`, `connect`, and related types from the main entry point for better compatibility with bundlers (Cocos Creator, Vite, etc.) that may have issues with subpath exports.
```typescript
// Now works in all environments:
import { rpc, RpcClient, connect } from '@esengine/rpc';
// Subpath import still supported:
import { RpcClient } from '@esengine/rpc/client';
```