()
| 55 | |
| 56 | const tmp = () => fs.mkdtemp(path.join(os.tmpdir(), "fhwrite-")); |
| 57 | const names = async (dir: string) => (await fs.readdir(dir)).sort(); |
| 58 | const mode = async (file: string) => (await fs.stat(file)).mode & 0o777; |
| 59 | |
| 60 | // The written-file artifacts (writeOutput's return value). The on-disk bundle also |