Skip to content

Commit e80bce7

Browse files
feat: support Gatsby 5.x (#245)
BREAKING CHANGE: Requires Node >=18.0.0 BREAKING CHANGE: Requires Gatsby ^5.0.0
1 parent 7633f55 commit e80bce7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: ${{ !contains(github.head_ref, 'all-contributors') }}
2323
strategy:
2424
matrix:
25-
node: [14.15.0, 14, 16, 18, 20]
25+
node: [18.0.0, 18, 20]
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: ⬇️ Checkout repo
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
cache: npm
6262
cache-dependency-path: ./package.json
63-
node-version: 16
63+
node-version: 18
6464

6565
- name: 📥 Install deps
6666
run: npm install

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
18

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
"remark-html": "^13.0.2"
6363
},
6464
"peerDependencies": {
65-
"gatsby": "^4.0.0"
65+
"gatsby": "^5.0.0"
6666
},
6767
"engines": {
68-
"node": ">=14.15.0",
68+
"node": ">=18.0.0",
6969
"npm": ">=6"
7070
}
7171
}

0 commit comments

Comments
 (0)