(destDir: string)
| 300 | } |
| 301 | |
| 302 | function writeTailwindSupport(destDir: string): void { |
| 303 | for (const file of listHtmlFiles(destDir)) { |
| 304 | const html = readFileSync(file, "utf-8"); |
| 305 | writeFileSync(file, injectTailwindBrowserScript(html), "utf-8"); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | function patchVideoSrc( |
| 310 | dir: string, |
no test coverage detected