| 6 | import { x } from "tinyexec"; |
| 7 | |
| 8 | interface GetCommitMessageOptions { |
| 9 | cwd?: string; |
| 10 | from?: string; |
| 11 | fromLastTag?: boolean; |
| 12 | to?: string; |
| 13 | last?: boolean; |
| 14 | edit?: boolean | string; |
| 15 | gitLogArgs?: string; |
| 16 | } |
| 17 | |
| 18 | // Get commit messages |
| 19 | export default async function getCommitMessages( |
nothing calls this directly
no outgoing calls
no test coverage detected