Compare commits

...

2 Commits

Author SHA1 Message Date
github-actions[bot]
0ea9ef145f Version Packages (#636)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-08 16:30:01 +01:00
lukasIO
bf6b141cd7 Fix JS file import paths (#635)
* Fix JS file import paths

* add changeset
2024-03-08 16:26:37 +01:00
6 changed files with 18 additions and 8 deletions

3
CHANGELOG.md Normal file
View File

@@ -0,0 +1,3 @@
# github.com/livekit/protocol
## 1.10.2

View File

@@ -1,7 +1,7 @@
{
"name": "github.com/livekit/protocol",
"private": true,
"version": "1.10.1",
"version": "1.10.2",
"scripts": {
"changeset": "changeset",
"ci:publish": "pnpm --filter @livekit/protocol run build && changeset publish"

View File

@@ -0,0 +1,7 @@
# @livekit/protocol
## 1.10.2
### Patch Changes
- Fix import paths - [#635](https://github.com/livekit/protocol/pull/635) ([@lukasIO](https://github.com/lukasIO))

View File

@@ -1,6 +1,6 @@
{
"name": "@livekit/protocol",
"version": "1.10.1",
"version": "1.10.2",
"description": "",
"type": "module",
"main": "src/index.js",

View File

@@ -3,6 +3,6 @@ export * from "./gen/livekit_agent_pb.js";
export * from "./gen/livekit_models_pb.js";
export * from "./gen/livekit_rtc_pb.js";
export * from "./gen/livekit_webhook_pb.js";
export * from "./gen/livekit_egress.js";
export * from "./gen/livekit_ingress.js";
export * from "./gen/livekit_sip.js";
export * from "./gen/livekit_egress_pb.js";
export * from "./gen/livekit_ingress_pb.js";
export * from "./gen/livekit_sip_pb.js";

View File

@@ -3,6 +3,6 @@ export * from "./gen/livekit_agent_pb.js";
export * from "./gen/livekit_models_pb.js";
export * from "./gen/livekit_rtc_pb.js";
export * from "./gen/livekit_webhook_pb.js";
export * from "./gen/livekit_egress.js";
export * from "./gen/livekit_ingress.js";
export * from "./gen/livekit_sip.js";
export * from "./gen/livekit_egress_pb.js";
export * from "./gen/livekit_ingress_pb.js";
export * from "./gen/livekit_sip_pb.js";