Skip to content

Commit 631b1ab

Browse files
authored
Update dependencies (#580)
1 parent 4329c43 commit 631b1ab

26 files changed

+12983
-36095
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup node
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: '14'
16+
node-version: '18'
1717
cache: 'npm'
1818
- name: Install deps
1919
run: npm ci

.github/workflows/test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919
name: Build
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
- name: Setup node
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: '14'
26+
node-version: '18'
2727
cache: 'npm'
2828
- name: Install deps
2929
run: npm ci
3030
- name: Build
3131
id: pack-dir
3232
run: ./build.sh
3333
- name: 'Upload Artifact'
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v3
3535
with:
3636
name: reactfire-${{ github.run_id }}
3737
path: |
@@ -44,12 +44,12 @@ jobs:
4444
needs: build
4545
strategy:
4646
matrix:
47-
node: ["14", "16"]
47+
node: ["18", "20"]
4848
fail-fast: false
4949
name: Test Node.js ${{ matrix.node }} (Ubuntu)
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
- name: Setup node
5454
uses: actions/setup-node@v3
5555
with:
@@ -62,12 +62,12 @@ jobs:
6262
run: npm install
6363
working-directory: ./functions
6464
- name: Firebase emulator cache
65-
uses: actions/cache@v2
65+
uses: actions/cache@v3
6666
with:
6767
path: ~/.cache/firebase/emulators
6868
key: firebase_emulators
6969
- name: 'Download Artifacts'
70-
uses: actions/download-artifact@v2
70+
uses: actions/download-artifact@v3
7171
- name: Expand Artifact
7272
run: |
7373
chmod +x reactfire-${{ github.run_id }}/unpack.sh
@@ -83,10 +83,10 @@ jobs:
8383
- name: Setup node
8484
uses: actions/setup-node@v3
8585
with:
86-
node-version: '14'
86+
node-version: '18'
8787
registry-url: 'https://registry.npmjs.org'
8888
- name: 'Download Artifacts'
89-
uses: actions/download-artifact@v2
89+
uses: actions/download-artifact@v3
9090
- name: Publish
9191
run: |
9292
cd ./reactfire-${{ github.run_id }}/

docs/reference/README.md

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/classes/ReactFireError.md

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- [Auth](#auth)
1010
* [Display the current signed-in user](#display-the-current-signed-in-user)
1111
* [Only render a component if a user is signed in](#only-render-a-component-if-a-user-is-signed-in)
12-
* [Initialize Auth with custom Dependencies](#initialize-auth-with-custom-dependencies)
12+
* [Initialize Auth with custom dependencies](#initialize-auth-with-custom-dependencies)
1313
- [Cloud Firestore](#cloud-firestore)
1414
* [Access data offline](#access-data-offline)
1515
* [Show a single document](#show-a-single-document)

0 commit comments

Comments
 (0)