Skip to content

Commit

Permalink
chore: Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShogunPanda committed Dec 20, 2023
1 parent 420b2c3 commit 33a1582
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"acquerello": "^1.1.2",
"acquerello": "^2.0.0",
"fastify-plugin": "^4.5.1",
"table": "^6.8.1"
},
"devDependencies": {
"@cowtech/eslint-config": "^8.10.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.94",
"@types/node": "^20.8.7",
"@types/tap": "^15.0.10",
"@cowtech/eslint-config": "^9.0.0",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.101",
"@types/node": "^20.10.5",
"@types/tap": "^15.0.11",
"c8": "^8.0.1",
"chokidar": "^3.5.3",
"concurrently": "^8.2.2",
"fastify": "^4.24.3",
"prettier": "^3.0.3",
"tap": "^18.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
"fastify": "^4.25.1",
"prettier": "^3.1.1",
"tap": "^18.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 18.18.0"
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ function printRoutes(routes: RouteOptions[], useColors: boolean, compact: boolea

export const plugin = fastifyPlugin(
function (instance: FastifyInstance, options: FastifyPluginOptions, done: (error?: FastifyError) => void): void {
const useColors = options.useColors ?? true
const compact = options.compact ?? false
const useColors: boolean = options.useColors ?? true
const compact: boolean = options.compact ?? false

const routes: RouteOptions[] = []

Expand Down

0 comments on commit 33a1582

Please sign in to comment.