Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
valverdealbo committed Apr 18, 2021
1 parent 0edb755 commit f49cc7e
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 6 deletions.
180 changes: 177 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"typescript": "^4.2.4"
},
"dependencies": {
"@types/express": "^4.17.11",
"@valbo/http-errors": "^1.0.3"
"@types/express": "4.x",
"@valbo/http-errors": "1.x"
},
"scripts": {
"build": "rimraf ./dist && tsc",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint-disable-next-line import/no-unresolved
import { Request, Response, NextFunction } from 'express';
import type { Request, Response, NextFunction } from 'express';
import { NotFoundError } from '@valbo/http-errors';

export function notFoundMiddleware(request: Request, response: Response, next: NextFunction): void {
Expand Down

0 comments on commit f49cc7e

Please sign in to comment.