Skip to content

Commit d7fd94b

Browse files
chore(deps-dev): bump @types/mocha from 9.1.1 to 10.0.0 (#49)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Russell Dempsey <[email protected]>
1 parent 28736da commit d7fd94b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,10 @@
186186
"@types/cors": "^2.8.12",
187187
"@types/eslint": "^8.4.2",
188188
"@types/express": "^4.17.13",
189-
"@types/mocha": "^9.1.0",
189+
"@types/mocha": "^10.0.0",
190190
"@types/node": "^17.0.21",
191191
"@types/portscanner": "^2.1.1",
192+
"@types/winston": "^2.4.4",
192193
"@typescript-eslint/eslint-plugin": "^5.22.0",
193194
"@typescript-eslint/parser": "^5.22.0",
194195
"aegir": "^37.0.15",

test/logger.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const logger = winston.createLogger({
2222
format: 'YYYY-MM-DD hh:mm:ss.SSS A'
2323
}),
2424
align(),
25-
printf((info) => `[${info.timestamp as string}] ${info.level}: ${info.message}`)
25+
printf((info) => `[${info.timestamp as string}] ${info.level}: ${info.message as string}`)
2626
),
2727
transports: [
2828
new winston.transports.Console({ level: 'verbose' }),

0 commit comments

Comments
 (0)