@edgedev/firebase 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.ts +3 -3
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  where
16
16
  } from "firebase/firestore";
17
17
 
18
- import { getAuth, signInWithEmailAndPassword } from "firebase/auth";
18
+ // import { getAuth, signInWithEmailAndPassword } from "firebase/auth";
19
19
 
20
20
  const firebaseConfig = {
21
21
  apiKey: import.meta.env.VITE_FIREBASE_API_KEY as string,
@@ -29,8 +29,8 @@ const firebaseConfig = {
29
29
 
30
30
  // Initialize Firebase
31
31
  const app = initializeApp(firebaseConfig);
32
- const auth = getAuth(app);
33
- console.log(auth);
32
+ // const auth = getAuth(app);
33
+ // console.log(auth);
34
34
  const db = getFirestore(app);
35
35
 
36
36
  // export const signIn = async (credentials: Credentials): Promise<object> => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/firebase",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Composables and stores for firebase",
5
5
  "main": "index.ts",
6
6
  "author": "Seth Fischer",