Skip to content

Commit 6ced917

Browse files
authored
Add dedicated entry points for Cordova and React Native (#4854)
1 parent d6e0242 commit 6ced917

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "@firebase/auth-exp/cordova",
3+
"description": "A Cordova-specific build of the Firebase Auth JS SDK",
4+
"browser": "../dist/cordova/index.js",
5+
"typings": "../dist/cordova/index.cordova.d.ts"
6+
}

packages-exp/auth-exp/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"webworker": "dist/index.webworker.esm5.js",
1313
"files": [
1414
"dist",
15-
"internal/package.json"
15+
"cordova/package.json",
16+
"internal/package.json",
17+
"react-native/package.json"
1618
],
1719
"scripts": {
1820
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "@firebase/auth-exp/react-native",
3+
"description": "A React Native-specific build of the Firebase Auth JS SDK",
4+
"browser": "../dist/rn/index.js",
5+
"typings": "../dist/rn/index.rn.d.ts"
6+
}

0 commit comments

Comments
 (0)