()
| 475 | } |
| 476 | |
| 477 | export async function writeDashboardSourceStamp() { |
| 478 | const stamp = await dashboardSourceStamp(); |
| 479 | if (!stamp) return; |
| 480 | const outFile = path.join(dashboardRoot, DIST_SOURCE_STAMP); |
| 481 | await fs.mkdir(path.dirname(outFile), { recursive: true }); |
| 482 | await fs.writeFile(outFile, `${stamp}\n`, "utf8"); |
| 483 | } |
| 484 | |
| 485 | export async function logBuiltFiles(files) { |
| 486 | for (const file of files) { |
no test coverage detected