diff --git a/.changeset/sharp-kids-open.md b/.changeset/sharp-kids-open.md new file mode 100644 index 0000000..0f67164 --- /dev/null +++ b/.changeset/sharp-kids-open.md @@ -0,0 +1,5 @@ +--- +'@livekit/react-native': patch +--- + +Fix metro warning on invalid path configuration in package.json diff --git a/package.json b/package.json index d38b5ef..a800697 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,14 @@ "name": "@livekit/react-native", "version": "2.10.0", "description": "LiveKit for React Native", - "main": "lib/commonjs/index", - "module": "lib/module/index", + "main": "lib/commonjs/index.js", + "module": "lib/module/index.js", "types": "lib/typescript/src/index.d.ts", "exports": { ".": { "source": "./src/index.tsx", "types": "./lib/typescript/src/index.d.ts", - "default": "./lib/commonjs/index" + "default": "./lib/commonjs/index.js" } }, "react-native": "src/index",