| 43 | } |
| 44 | |
| 45 | export function resolveSlideshowPath(): string | null { |
| 46 | const d = helperDir(); |
| 47 | const candidates = [ |
| 48 | resolve(d, "..", "..", "..", "player", "dist", "slideshow", "hyperframes-slideshow.global.js"), |
| 49 | resolve(d, "hyperframes-slideshow.global.js"), |
| 50 | resolve(d, "..", "hyperframes-slideshow.global.js"), |
| 51 | ]; |
| 52 | return candidates.find((p) => existsSync(p)) ?? null; |
| 53 | } |
| 54 | |
| 55 | /** Inject the runtime <script> into composition HTML before </body> (or at the end). */ |
| 56 | export function injectRuntime(html: string): string { |