Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <hello@matteocollina.com>
  • Loading branch information
mcollina committed Apr 7, 2023
1 parent 8bbc8ed commit f470ddf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index.test-d.ts
@@ -1,5 +1,5 @@
import { expectType, expectAssignable, expectError } from "tsd"
import * as closeWithGrace from "."
import closeWithGrace from "."
import {
Options,
CloseWithGraceCallback,
Expand Down Expand Up @@ -64,11 +64,11 @@ expectAssignable<Signals>("SIGTERM")

expectType<Options>({ delay: 10 })

expectType<{
expectAssignable<{
close: () => void
uninstall: () => void
}>(closeWithGrace({ delay: 100 }, asyncAllCallback))
expectType<{
expectAssignable<{
close: () => void
uninstall: () => void
}>(closeWithGrace({ delay: 100 }, AllCallback))
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -4,11 +4,11 @@
"description": "Exit your process, gracefully (if possible)",
"main": "index.js",
"devDependencies": {
"husky": "^4.3.8",
"standard": "^16.0.3",
"husky": "^8.0.0",
"standard": "^17.0.0",
"tap-dot": "^2.0.0",
"tape": "^5.1.1",
"tsd": "^0.14.0"
"tsd": "^0.28.0"
},
"scripts": {
"test": "standard && tape test/*.test.js | tap-dot && tsd"
Expand Down

0 comments on commit f470ddf

Please sign in to comment.