({path, title, hasLoader, hasStyleSheet, hasCompatibilityCheck}, {debug, platform})
| 87 | ]; |
| 88 | |
| 89 | async function writeEntry({path, title, hasLoader, hasStyleSheet, hasCompatibilityCheck}, {debug, platform}) { |
| 90 | const destDir = getDestDir({debug, platform}); |
| 91 | const d = `${destDir}/${path}`; |
| 92 | await writeFile(d, html(platform, title, hasLoader, hasStyleSheet, hasCompatibilityCheck)); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @param {HTMLEntry[]} htmlEntries |
no test coverage detected