Handles the rebase pull request command.
({pr, i}: Arguments<RebaseOptions>)
| 32 | |
| 33 | /** Handles the rebase pull request command. */ |
| 34 | async function handler({pr, i}: Arguments<RebaseOptions>) { |
| 35 | process.exitCode = await rebasePr(pr, i); |
| 36 | } |
| 37 | |
| 38 | /** yargs command module for rebasing a PR */ |
| 39 | export const RebaseCommandModule: CommandModule<{}, RebaseOptions> = { |
nothing calls this directly
no test coverage detected