Skip to content

Commit 3b2405f

Browse files
authored
feat: support Firebase 12 (#1629)
1 parent 174515e commit 3b2405f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/docs-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Node.js
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 18
22+
node-version: 20
2323
cache: 'pnpm'
2424

2525
- name: Install dependencies

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 18
24+
node-version: 20
2525
cache: 'pnpm'
2626

2727
- name: Install dependencies

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Official Firebase bindings for Vue.js",
55
"packageManager": "[email protected]",
66
"engines": {
7-
"node": ">=18"
7+
"node": ">=20"
88
},
99
"volta": {
1010
"node": "20.11.1"
@@ -75,7 +75,7 @@
7575
},
7676
"peerDependencies": {
7777
"consola": "^3.2.3",
78-
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0",
78+
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
7979
"vue": "^2.7.0 || ^3.2.0"
8080
},
8181
"peerDependenciesMeta": {

packages/nuxt/playground/firebase.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"functions": {
3-
"runtime": "nodejs18",
3+
"runtime": "nodejs20",
44
"source": ".output/server"
55
},
66
"hosting": {

playground/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"logs": "firebase functions:log"
1212
},
1313
"engines": {
14-
"node": ">=18"
14+
"node": ">=20"
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {

0 commit comments

Comments
 (0)