Function
renderBundleWrittenText
(data: { dir: string; files: number; snapshotId: string })
Source from the content-addressed store, hash-verified
| 8118 | } |
| 8119 | |
| 8120 | function renderBundleWrittenText(data: { dir: string; files: number; snapshotId: string }): string { |
| 8121 | return `Bundle written to ${data.dir}\n ${data.files} files, snapshotId=${data.snapshotId}`; |
| 8122 | } |
| 8123 | |
| 8124 | function renderBundleDryRunText(data: { dir: string; files: number; snapshotId: string }): string { |
| 8125 | return `(dry-run) would write bundle to ${data.dir}\n ${data.files} files, snapshotId=${data.snapshotId}`; |
Tested by
no test coverage detected