Skip to content

Commit

Permalink
Switch to fastify 5
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Sep 28, 2024
1 parent 605ddc1 commit 0bd26cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:

strategy:
matrix:
node-version: [14, 16, 18]
node-version: [20, 22]
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v2.2.0
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
},
"homepage": "https://github.com/jsumners/fastify-no-icon#readme",
"dependencies": {
"fastify-plugin": "^4.2.1"
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@types/node": "^18.7.14",
"fastify": "^4.5.3",
"@types/node": "^20.16.10",
"fastify": "^5.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
Expand Down
2 changes: 1 addition & 1 deletion plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ function noFaviconPlugin (fastify, options, next) {
}

module.exports = fp(noFaviconPlugin, {
fastify: '^4.0.0',
fastify: '^5.0.0',
name: 'fastify-no-icon'
})

0 comments on commit 0bd26cc

Please sign in to comment.