-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump minor * Bump github actions * Bump firebase dep * Bump emulators * Refactored tests * `take(1)` where needed * clean up race conditions * drop delete app hack (except for firestore...) * retry on a flaky RTDB test
- Loading branch information
1 parent
5cfad21
commit b91f358
Showing
16 changed files
with
3,644 additions
and
7,141 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
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,4 +1,6 @@ | ||
node_modules | ||
dist | ||
/*.log | ||
*.log | ||
/rxfire-*.tgz | ||
.firebase | ||
.yarn |
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 @@ | ||
nodeLinker: node-modules |
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,6 +1,6 @@ | ||
{ | ||
"name": "rxfire", | ||
"version": "6.0.6", | ||
"version": "6.1.0", | ||
"private": true, | ||
"description": "Firebase JavaScript library RxJS", | ||
"author": "Firebase <[email protected]> (https://firebase.google.com/)", | ||
|
@@ -82,14 +82,13 @@ | |
"build:docs": "cp README.md ./dist/ && cp -r ./docs ./dist/", | ||
"dev": "rollup -c -w", | ||
"echo:chrome": "echo 'Open Chrome DevTools: \nchrome://inspect/#devices'", | ||
"test": "firebase emulators:exec \"jest --detectOpenHandles\" --project=rxfire-test-c497c", | ||
"test": "npx -y firebase-tools@latest emulators:exec \"jest --detectOpenHandles\" --project=rxfire-test-c497c", | ||
"test:debug": "yarn echo:chrome && firebase emulators:exec ./test-debug.sh --project=rxfire-test-c497c", | ||
"emulators": "firebase emulators:start --project=rxfire-test-c497c", | ||
"emulators": "npx -y firebase-tools@latest emulators:start --project=rxfire-test-c497c", | ||
"jest": "jest --detectOpenHandles" | ||
}, | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"firebase": "^9.0.0 || ^10.0.0", | ||
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0", | ||
"rxjs": "^6.0.0 || ^7.0.0" | ||
}, | ||
"devDependencies": { | ||
|
@@ -107,7 +106,6 @@ | |
"eslint": "^7.32.0", | ||
"eslint-config-google": "^0.14.0", | ||
"firebase": "^10.0.0", | ||
"firebase-tools": "^12.5.2", | ||
"glob": "^7.1.6", | ||
"jest": "^29.6.4", | ||
"jest-environment-jsdom": "^29.6.4", | ||
|
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.