-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(core): support for v5.0.0 of the Firebase SDK * fix(query): fix issue preventing some queries when using v5.0.0 of the Firebase SDK (due to breaking change of `docChanges` (now a method instead of parameter) - #98, #99 * feat(tests): unit test added to verify `docChanges` also works as a method (existing tests cover `docChanges` as a parameter)
- Loading branch information
Showing
12 changed files
with
676 additions
and
1,194 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const fbConfig = { | ||
apiKey: 'AIzaSyCTUERDM-Pchn_UDTsfhVPiwM4TtNIxots', | ||
authDomain: 'redux-firebasev3.firebaseapp.com', | ||
databaseURL: 'https://redux-firebasev3.firebaseio.com', | ||
storageBucket: 'redux-firebasev3.appspot.com', | ||
messagingSenderId: '823357791673', | ||
projectId: 'redux-firebasev3', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.