({ files })
| 85693 | ["ls-files", "--others", "--exclude-standard"], |
| 85694 | { cwd: gitDir } |
| 85695 | ); |
| 85696 | const files = [...modified.split("\n"), ...others.split("\n")].filter( |
| 85697 | (file) => !!file |
| 85698 | ); |
| 85699 | return files.sort(); |
| 85700 | }; |
| 85701 | var gitAdd = async ({ files }) => { |
| 85702 | const gitDir = await getGitDir(); |
| 85703 | const gitAddSpinner = le(); |
| 85704 | gitAddSpinner.start("Adding files to commit"); |
no test coverage detected
searching dependent graphs…