Skip to content

Commit c2686ed

Browse files
authored
Remove explicit React Native entry point (#7138)
1 parent f1c8d38 commit c2686ed

File tree

6 files changed

+7
-51
lines changed

6 files changed

+7
-51
lines changed

.changeset/slow-fishes-obey.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'firebase': major
3+
'@firebase/auth': major
4+
---
5+
6+
Remove `firebase/auth/react-native` entry point. The React Native bundle should be automatically picked up by React Native build tools which recognize the `react-native` fields in `package.json` (at the top level and in `exports`).

packages/auth/package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@
4141
"types": "./dist/cordova/index.cordova.d.ts",
4242
"default": "./dist/cordova/index.js"
4343
},
44-
"./react-native": {
45-
"types": "./dist/rn/index.rn.d.ts",
46-
"default": "./dist/rn/index.js"
47-
},
4844
"./internal": {
4945
"types": "./dist/internal/index.d.ts",
5046
"node": {
@@ -72,8 +68,7 @@
7268
"files": [
7369
"dist",
7470
"cordova/package.json",
75-
"internal/package.json",
76-
"react-native/package.json"
71+
"internal/package.json"
7772
],
7873
"scripts": {
7974
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",

packages/auth/react-native/package.json

-7
This file was deleted.

packages/firebase/auth/react-native/index.ts

-18
This file was deleted.

packages/firebase/auth/react-native/package.json

-7
This file was deleted.

packages/firebase/package.json

-13
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,6 @@
8383
},
8484
"default": "./auth/cordova/dist/esm/index.esm.js"
8585
},
86-
"./auth/react-native": {
87-
"types": "./auth/react-native/dist/auth/react-native/index.d.ts",
88-
"node": {
89-
"require": "./auth/react-native/dist/index.cjs.js",
90-
"import": "./auth/react-native/dist/index.mjs"
91-
},
92-
"browser": {
93-
"require": "./auth/react-native/dist/index.cjs.js",
94-
"import": "./auth/react-native/dist/esm/index.esm.js"
95-
},
96-
"default": "./auth/react-native/dist/esm/index.esm.js"
97-
},
9886
"./database": {
9987
"types": "./database/dist/database/index.d.ts",
10088
"node": {
@@ -421,7 +409,6 @@
421409
"app-check",
422410
"auth",
423411
"auth/cordova",
424-
"auth/react-native",
425412
"functions",
426413
"firestore",
427414
"firestore/lite",

0 commit comments

Comments
 (0)