diff --git a/packages-exp/firebase-exp/auth/cordova/index.ts b/packages-exp/firebase-exp/auth/cordova/index.ts new file mode 100644 index 00000000000..4a6eba1206d --- /dev/null +++ b/packages-exp/firebase-exp/auth/cordova/index.ts @@ -0,0 +1,18 @@ +/** + * @license + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export * from '@firebase/auth-exp/cordova'; diff --git a/packages-exp/firebase-exp/auth/cordova/package.json b/packages-exp/firebase-exp/auth/cordova/package.json new file mode 100644 index 00000000000..83b0c1498a9 --- /dev/null +++ b/packages-exp/firebase-exp/auth/cordova/package.json @@ -0,0 +1,8 @@ +{ + "name": "firebase-exp/auth/cordova", + "main": "dist/index.cjs.js", + "browser": "dist/index.esm.js", + "module": "dist/index.esm.js", + "typings": "dist/auth/cordova/index.d.ts" + } + \ No newline at end of file diff --git a/packages-exp/firebase-exp/auth/react-native/index.ts b/packages-exp/firebase-exp/auth/react-native/index.ts new file mode 100644 index 00000000000..007c7666153 --- /dev/null +++ b/packages-exp/firebase-exp/auth/react-native/index.ts @@ -0,0 +1,18 @@ +/** + * @license + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export * from '@firebase/auth-exp/react-native'; diff --git a/packages-exp/firebase-exp/auth/react-native/package.json b/packages-exp/firebase-exp/auth/react-native/package.json new file mode 100644 index 00000000000..43ac89ac5a9 --- /dev/null +++ b/packages-exp/firebase-exp/auth/react-native/package.json @@ -0,0 +1,8 @@ +{ + "name": "firebase-exp/auth/react-native", + "main": "dist/index.cjs.js", + "browser": "dist/index.esm.js", + "module": "dist/index.esm.js", + "typings": "dist/auth/react-native/index.d.ts" + } + \ No newline at end of file diff --git a/packages-exp/firebase-exp/package.json b/packages-exp/firebase-exp/package.json index c1cb853d782..41e4438f94a 100644 --- a/packages-exp/firebase-exp/package.json +++ b/packages-exp/firebase-exp/package.json @@ -40,6 +40,14 @@ "node": "./auth/dist/index.cjs.js", "default": "./auth/dist/index.esm.js" }, + "./auth/cordova": { + "node": "./auth/cordova/dist/index.cjs.js", + "default": "./auth/cordova/dist/index.esm.js" + }, + "./auth/react-native": { + "node": "./auth/react-native/dist/index.cjs.js", + "default": "./auth/react-native/dist/index.esm.js" + }, "./database": { "node": "./database/dist/index.cjs.js", "default": "./database/dist/index.esm.js" @@ -175,6 +183,8 @@ "app", "app-check", "auth", + "auth/cordova", + "auth/react-native", "functions", "firestore", "firestore/lite",