We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7bbb83 commit 3fbe1cdCopy full SHA for 3fbe1cd
source/commands/utils/sharedDangerfileArgs.ts
@@ -1,12 +1,12 @@
1
-import program from "commander"
+import { Command } from "commander"
2
import chalk from "chalk"
3
4
-process.on("unhandledRejection", function(reason: string, _p: any) {
+process.on("unhandledRejection", function (reason: string, _p: any) {
5
console.log(chalk.red("Error: "), reason)
6
process.exitCode = 1
7
})
8
9
-export interface SharedCLI extends program.CommanderStatic {
+export interface SharedCLI extends Command {
10
/** Should we be posting as much info as possible? */
11
verbose: boolean
12
/** Output to STDOUT instead of leaving a comment */
0 commit comments