From f33cca82316d9799985958217a5e41c909b4f6f0 Mon Sep 17 00:00:00 2001 From: davidliu Date: Mon, 11 May 2026 20:27:15 +0900 Subject: [PATCH 1/2] Fix incomplete exports map in package.json This was causing a dual-instance of @livekit/components and breaking RoomContext --- .changeset/quiet-crews-cover.md | 5 +++++ package.json | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changeset/quiet-crews-cover.md diff --git a/.changeset/quiet-crews-cover.md b/.changeset/quiet-crews-cover.md new file mode 100644 index 0000000..d7ee4dd --- /dev/null +++ b/.changeset/quiet-crews-cover.md @@ -0,0 +1,5 @@ +--- +'@livekit/react-native': patch +--- + +Fix incomplete exports map in package.json, causing a dual-instance of @livekit/components and breaking RoomContext diff --git a/package.json b/package.json index 8002c8f..8acaca8 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,9 @@ ".": { "source": "./src/index.tsx", "types": "./lib/typescript/src/index.d.ts", + "react-native": "./src/index.tsx", + "import": "./lib/module/index.js", + "require": "./lib/commonjs/index.js", "default": "./lib/commonjs/index.js" } }, From 486c8bfb50728c8a0a32eda018d3ec1d007034bc Mon Sep 17 00:00:00 2001 From: davidliu Date: Mon, 11 May 2026 20:42:37 +0900 Subject: [PATCH 2/2] handle non-main release branches --- .github/workflows/changeset.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/changeset.yaml b/.github/workflows/changeset.yaml index 25ae4a0..6dc8961 100644 --- a/.github/workflows/changeset.yaml +++ b/.github/workflows/changeset.yaml @@ -5,6 +5,7 @@ on: push: branches: - main + - 'release/**' # e.g. release/2.10.x concurrency: ${{ github.workflow }}-${{ github.ref }}