Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <hello@matteocollina.com>
  • Loading branch information
mcollina committed Sep 2, 2024
1 parent b49de83 commit 6e73d4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
strategy:
matrix:
node-version:
- 18
- 20
- 22
os:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"standard": "^17.0.0",
"tap": "^18.0.0",
"tap-mocha-reporter": "^5.0.1",
"tsd": "^0.13.1"
"tsd": "^0.31.0"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-querystring": "^1.0.0",
"safe-regex2": "^3.1.0"
"safe-regex2": "^4.0.0"
},
"tsd": {
"directory": "test/types"
Expand Down
2 changes: 1 addition & 1 deletion test/null-object.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test('NullObject', t => {

test('has no methods from generic Object class', t => {
function getAllPropertyNames (obj) {
var props = []
const props = []

do {
Object.getOwnPropertyNames(obj).forEach(function (prop) {
Expand Down
2 changes: 1 addition & 1 deletion test/types/router.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expectType } from 'tsd'
import * as Router from '../../'
import Router from '../../'
import { Http2ServerRequest, Http2ServerResponse } from 'http2'
import { IncomingMessage, ServerResponse } from 'http'

Expand Down

0 comments on commit 6e73d4e

Please sign in to comment.