Skip to content

Commit 207ef71

Browse files
Merge master into release
2 parents ae034f6 + ad773fa commit 207ef71

File tree

7 files changed

+23
-22
lines changed

7 files changed

+23
-22
lines changed

.changeset/clever-ears-tell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/database": patch
3+
---
4+
5+
Removed uuid as a dependency for @firebase/database

.changeset/wet-balloons-own.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/firestore': patch
3+
---
4+
5+
Fix Node ESM export paths for firestore/lite.

.github/workflows/assign-tech-writers.yml

-15
This file was deleted.

.github/workflows/label-doc-changes.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,9 @@ jobs:
3333
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
3434
with:
3535
labels: doc-changes
36-
github_token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
36+
github_token: ${{ github.token }}
37+
- name: assign techwriters to PR
38+
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
39+
uses: kentaro-m/[email protected]
40+
with:
41+
configuration-path: ".github/auto_assign.yml"

.github/workflows/update-api-reports.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ jobs:
77
name: Update API reports
88
runs-on: ubuntu-latest
99

10+
permissions:
11+
contents: write
1012
steps:
1113
- name: Checkout Repo
1214
uses: actions/checkout@master
1315
with:
1416
# checkout HEAD commit instead of merge commit
1517
ref: ${{ github.event.pull_request.head.sha }}
16-
token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
18+
token: ${{ github.token }}
1719
- name: Set up Node (14)
1820
uses: actions/setup-node@v2
1921
with:

packages/database/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@
5656
"@firebase/app": "0.7.27",
5757
"rollup": "2.72.1",
5858
"rollup-plugin-typescript2": "0.31.2",
59-
"typescript": "4.2.2",
60-
"uuid": "^8.3.2"
59+
"typescript": "4.2.2"
6160
},
6261
"repository": {
6362
"directory": "packages/database",

packages/firestore/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
"require": "./dist/lite/index.node.cjs.js",
6262
"import": "./dist/lite/index.node.mjs"
6363
},
64-
"react-native": "./dist/index.rn.js",
65-
"esm5": "./dist/index.esm5.js",
66-
"default": "./dist/index.esm2017.js"
64+
"react-native": "./dist/lite/index.rn.esm2017.js",
65+
"esm5": "./dist/lite/index.browser.esm5.js",
66+
"default": "./dist/lite/index.browser.esm2017.js"
6767
},
6868
"./package.json": "./package.json"
6969
},

0 commit comments

Comments
 (0)