()
| 18 | } |
| 19 | |
| 20 | export async function getChangedFiles(): Promise<string[]> { |
| 21 | const status = await git.status(); |
| 22 | return [...status.modified, ...status.created, ...status.not_added]; |
| 23 | } |
| 24 | |
| 25 | export async function getStagedFiles(): Promise<string[]> { |
| 26 | const status = await git.status(); |
no outgoing calls
no test coverage detected