Skip to content

Commit

Permalink
feat: support Gatsby 5.x (#245)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node >=18.0.0
BREAKING CHANGE: Requires Gatsby ^5.0.0
  • Loading branch information
MichaelDeBoey committed May 30, 2023
1 parent 7633f55 commit e80bce7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
if: ${{ !contains(github.head_ref, 'all-contributors') }}
strategy:
matrix:
node: [14.15.0, 14, 16, 18, 20]
node: [18.0.0, 18, 20]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
with:
cache: npm
cache-dependency-path: ./package.json
node-version: 16
node-version: 18

- name: 📥 Install deps
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
18
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
"remark-html": "^13.0.2"
},
"peerDependencies": {
"gatsby": "^4.0.0"
"gatsby": "^5.0.0"
},
"engines": {
"node": ">=14.15.0",
"node": ">=18.0.0",
"npm": ">=6"
}
}

0 comments on commit e80bce7

Please sign in to comment.