2024-05-01 13:10:33 +00:00
|
|
|
import { join, resolve } from 'node:path'
|
2024-06-15 23:03:24 +00:00
|
|
|
import { fileURLToPath } from 'node:url'
|
2024-05-01 13:10:33 +00:00
|
|
|
import { promises as fsp } from 'node:fs'
|
2021-12-22 21:27:23 +00:00
|
|
|
import { globby } from 'globby'
|
2021-12-22 13:04:06 +00:00
|
|
|
|
2024-06-15 23:03:24 +00:00
|
|
|
const templatesRoot = fileURLToPath(new URL('..', import.meta.url))
|
|
|
|
|
|
|
|
const r = (...path: string[]) => resolve(join(templatesRoot, ...path))
|
2021-12-22 13:04:06 +00:00
|
|
|
|
|
|
|
async function main () {
|
2024-05-02 08:51:39 +00:00
|
|
|
const templates = await globby(r('dist/templates/*.js'))
|
2021-12-22 13:04:06 +00:00
|
|
|
for (const file of templates) {
|
|
|
|
const { template } = await import(file)
|
|
|
|
const updated = template({
|
|
|
|
// messages: {},
|
2024-05-01 13:10:33 +00:00
|
|
|
name: '{{ name }}', // TODO
|
2021-12-22 13:04:06 +00:00
|
|
|
})
|
2024-05-02 08:51:39 +00:00
|
|
|
await fsp.mkdir(file.replace('.js', ''))
|
|
|
|
await fsp.writeFile(file.replace('.js', '/index.html'), updated)
|
2021-12-22 13:04:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main().catch(console.error)
|