(hasHead: boolean, extraArgs: string[])
| 51 | } |
| 52 | |
| 53 | const diffArguments = (hasHead: boolean, extraArgs: string[]) => [ |
| 54 | 'diff', |
| 55 | '--cached', |
| 56 | ...(hasHead ? [] : ['--root']), |
| 57 | ...extraArgs, |
| 58 | '--', |
| 59 | ] |
| 60 | |
| 61 | const loadContextOutputs = async (options?: { |
| 62 | env?: NodeJS.ProcessEnv |
no outgoing calls
no test coverage detected