Skip to content

Commit

Permalink
chore: update fastify v4 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkampitakis authored Jun 8, 2022
1 parent 57c150d commit 015d6cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ fastify.register(customHealthCheck, {
}, { value: false });
});

fastify.listen(5000, () => {
fastify.listen({ port: 5000 }).then(() => {
console.log('🚀 Example Server listening on port 5000');
});
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@
]
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fastify-plugin": "^3.0.1"
},
"devDependencies": {
"fastify": "^3.29.0",
"jest": "^28.0.3",
"mongodb": "^3.6.3",
"fastify": "^4.0.0",
"jest": "^28.1.1",
"mongodb": "^4.7.0",
"semistandard": "^16.0.1",
"snazzy": "^9.0.0"
},
Expand Down

0 comments on commit 015d6cf

Please sign in to comment.