* Sets up --force flag for the command. * * @param message overrides the description for --force for this command * @returns the command, for chaining
(message?: string)
| 108 | * @returns the command, for chaining |
| 109 | */ |
| 110 | withForce(message?: string): Command { |
| 111 | this.options.push(["-f, --force", message || "automatically accept all interactive prompts"]); |
| 112 | return this; |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Attaches a function to run before the command's action function. |
no outgoing calls
no test coverage detected