(options)
| 394 | |
| 395 | const client: GitClient = { |
| 396 | async clone(options) { |
| 397 | await cloneWith({ |
| 398 | ...options, |
| 399 | fs: await fs(), |
| 400 | git: await loadGit<IsomorphicGitClient>(), |
| 401 | http: await loadHttp(), |
| 402 | cache, |
| 403 | }); |
| 404 | }, |
| 405 | async diff(options = {}) { |
| 406 | const f = await fs(); |
| 407 | return diffWith({ |