-
-
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.
* fix(getFirestore): correctly load extended firestore instance in `getFirestore` (#318) - @aarajh * fix(orderedReducer): reorder items when `newIndex` is zero (#317) - @matthew-h-cromer * feat(types): add types for reducer (#296, [react-redux-firebase 964](prescottprue/react-redux-firebase#964)) - @msutkowski,@bawahakim * fix(examples): update complete example patterns + major versions * build(deps): bump immer from 5.0.0 to 8.0.1 (#320) * build(deps): bump ini from 1.3.5 to 1.3.8 (#316) * build(deps): bump ini from 1.3.5 to 1.3.8 in /examples/basic (#315) Co-Authored-By: Hakim Bawa <[email protected]> Co-authored-by: Aaraj Habib <[email protected]> Co-authored-by: matthew-h-cromer <[email protected]> Co-authored-by: Matt Sutkowski <[email protected]>
- Loading branch information
1 parent
87830e4
commit 9622158
Showing
121 changed files
with
9,012 additions
and
6,928 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5251,9 +5251,9 @@ [email protected]: | |
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | ||
|
||
ini@^1.3.5, ini@~1.3.0: | ||
version "1.3.5" | ||
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" | ||
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== | ||
version "1.3.8" | ||
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" | ||
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== | ||
|
||
[email protected]: | ||
version "6.2.1" | ||
|
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 @@ | ||
SKIP_PREFLIGHT_CHECK=true |
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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
CI=false | ||
# Needed to skip warnings from jest@beta in package.json | ||
SKIP_PREFLIGHT_CHECK=true | ||
FIREBASE_PROJECT_ID="redux-firestore-3996a" | ||
FIREBASE_API_KEY="AIzaSyCVKQUFemqhQdkIy-i83mPcSSD5dUqqQBk" | ||
|
||
REACT_APP_ENVIRONMENT=stage | ||
|
||
# App environment | ||
REACT_APP_FIREBASE_apiKey=$FIREBASE_API_KEY | ||
REACT_APP_FIREBASE_authDomain="redux-firestore-3996a.firebaseapp.com" | ||
REACT_APP_FIREBASE_databaseURL="https://redux-firestore-3996a-default-rtdb.firebaseio.com" | ||
REACT_APP_FIREBASE_projectId=$FIREBASE_PROJECT_ID | ||
REACT_APP_FIREBASE_storageBucket="redux-firestore-3996a.appspot.com" | ||
REACT_APP_FIREBASE_appId="1:69609080163:web:a20aac99c66a2749243f56" |
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 |
---|---|---|
|
@@ -3,5 +3,4 @@ | |
dist/** | ||
build/** | ||
src/index.html | ||
blueprints/** | ||
src/config.js |
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 |
---|---|---|
@@ -1,31 +1,7 @@ | ||
{ | ||
"projects": { | ||
"default": "redux-firebasev3", | ||
"master": "redux-firebasev3", | ||
"prod": "redux-firebasev3" | ||
}, | ||
"ci": { | ||
"createConfig": { | ||
"master": { | ||
"env": "staging", | ||
"firebase": { | ||
"apiKey": "AIzaSyBTvAcJwsN8iygsnwAZyzIuy1uleYEpWIo", | ||
"authDomain": "redux-firebasev3.firebaseapp.com", | ||
"databaseURL": "https://redux-firebasev3.firebaseio.com", | ||
"projectId": "redux-firebasev3", | ||
"storageBucket": "redux-firebasev3.appspot.com" | ||
} | ||
}, | ||
"prod": { | ||
"env": "production", | ||
"firebase": { | ||
"apiKey": "AIzaSyBTvAcJwsN8iygsnwAZyzIuy1uleYEpWIo", | ||
"authDomain": "redux-firebasev3.firebaseapp.com", | ||
"databaseURL": "https://redux-firebasev3.firebaseio.com", | ||
"projectId": "redux-firebasev3", | ||
"storageBucket": "redux-firebasev3.appspot.com" | ||
} | ||
} | ||
} | ||
"default": "redux-firestore-3996a", | ||
"master": "redux-firestore-3996a", | ||
"prod": "redux-firestore-3996a" | ||
} | ||
} |
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
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.