Skip to content

Commit

Permalink
Fix JS file import paths (#635)
Browse files Browse the repository at this point in the history
* Fix JS file import paths

* add changeset
  • Loading branch information
lukasIO authored Mar 8, 2024
1 parent 66b79e3 commit bf6b141
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/brave-phones-sniff.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/protocol": patch
---

Fix import paths
6 changes: 3 additions & 3 deletions packages/javascript/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
6 changes: 3 additions & 3 deletions packages/javascript/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit bf6b141

Please sign in to comment.