Skip to content

Commit 6564e99

Browse files
authored
Add cordova and react-native entry points to firebase/auth (#5128)
* add cordova and rn entry points to auth * add auth entry points * update lock
1 parent 2a2a376 commit 6564e99

File tree

5 files changed

+62
-0
lines changed

5 files changed

+62
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2021 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export * from '@firebase/auth-exp/cordova';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "firebase-exp/auth/cordova",
3+
"main": "dist/index.cjs.js",
4+
"browser": "dist/index.esm.js",
5+
"module": "dist/index.esm.js",
6+
"typings": "dist/auth/cordova/index.d.ts"
7+
}
8+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2021 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export * from '@firebase/auth-exp/react-native';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "firebase-exp/auth/react-native",
3+
"main": "dist/index.cjs.js",
4+
"browser": "dist/index.esm.js",
5+
"module": "dist/index.esm.js",
6+
"typings": "dist/auth/react-native/index.d.ts"
7+
}
8+

packages-exp/firebase-exp/package.json

+10
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@
4040
"node": "./auth/dist/index.cjs.js",
4141
"default": "./auth/dist/index.esm.js"
4242
},
43+
"./auth/cordova": {
44+
"node": "./auth/cordova/dist/index.cjs.js",
45+
"default": "./auth/cordova/dist/index.esm.js"
46+
},
47+
"./auth/react-native": {
48+
"node": "./auth/react-native/dist/index.cjs.js",
49+
"default": "./auth/react-native/dist/index.esm.js"
50+
},
4351
"./database": {
4452
"node": "./database/dist/index.cjs.js",
4553
"default": "./database/dist/index.esm.js"
@@ -175,6 +183,8 @@
175183
"app",
176184
"app-check",
177185
"auth",
186+
"auth/cordova",
187+
"auth/react-native",
178188
"functions",
179189
"firestore",
180190
"firestore/lite",

0 commit comments

Comments
 (0)