Skip to content

Commit 99e7b3a

Browse files
committed
chore: use node 18 pnpm 8
1 parent 22938c7 commit 99e7b3a

File tree

7 files changed

+3207
-2232
lines changed

7 files changed

+3207
-2232
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We accept contributions via Pull Requests on [Github](<https://github.com/>{{ gi
66

77
## Setup
88

9-
- Use `pnpm@7`
9+
- Use `pnpm@8`
1010
- Install `firebase-tools` globally: `npm install -g firebase-tools`
1111

1212
## Pull Requests

.github/workflows/docs-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Install Node.js
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 16
22+
node-version: 18
2323

2424
- uses: pnpm/action-setup@v2
2525
name: Install pnpm
2626
id: pnpm-install
2727
with:
28-
version: 7
28+
version: 8
2929
run_install: false
3030

3131
- name: Get pnpm store directory

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- name: Install Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 16
24+
node-version: 18
2525

2626
- uses: pnpm/action-setup@v2
2727
name: Install pnpm
2828
id: pnpm-install
2929
with:
30-
version: 7
30+
version: 8
3131
run_install: false
3232

3333
- name: Get pnpm store directory

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525

2626
- uses: actions/setup-node@v3
2727
with:
28-
node-version: 16
28+
node-version: 18
2929

3030
- uses: pnpm/action-setup@v2
3131
with:
32-
version: 7
32+
version: 8
3333
run_install: false
3434

3535
- name: Get pnpm store directory

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
"name": "vuefire",
33
"version": "3.1.0",
44
"description": "Official Firebase bindings for Vue.js",
5-
"packageManager": "pnpm@7.25.1",
5+
"packageManager": "pnpm@8.6.6",
6+
"engines": {
7+
"node": "18"
8+
},
9+
"volta": {
10+
"node": "18.16.1"
11+
},
612
"type": "module",
713
"exports": {
814
".": {

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": "16"
14+
"node": "18"
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {

0 commit comments

Comments
 (0)