Skip to content

Commit

Permalink
Dependency update + Small cross-runtime fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Jun 9, 2024
1 parent f51db1b commit e729e3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@cross/env": "jsr:@cross/env@~1.0.2",
"@cross/fs": "jsr:@cross/fs@~0.1.11",
"@cross/jwt": "jsr:@cross/jwt@~0.4.7",
"@cross/kv": "jsr:@cross/kv@^0.15.10",
"@cross/kv": "jsr:@cross/kv@~0.15.11",
"@cross/runtime": "jsr:@cross/runtime@~1.0.0",
"@cross/service": "jsr:@cross/service@~1.0.3",
"@cross/test": "jsr:@cross/test@~0.0.9",
Expand Down
4 changes: 2 additions & 2 deletions lib/types/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type RunnerCallback = (pid?: number) => void
export interface RunnerResult {
success: boolean
code?: number
signal?: Deno.Signal | null
signal?: unknown
}
export abstract class BaseRunner {
protected readonly processConfig: ProcessConfiguration
Expand All @@ -25,5 +25,5 @@ export abstract class BaseRunner {
}

abstract run(runningCallback: RunnerCallback): Promise<RunnerResult>
abstract kill(signal?: Deno.Signal): void
abstract kill(signal?: unknown): void
}

0 comments on commit e729e3c

Please sign in to comment.