Nuxt/packages/ui-templates/lib/prerender.ts

21 lines
614 B
TypeScript
Raw Permalink Normal View History

import { fileURLToPath } from 'node:url'
import { promises as fsp } from 'node:fs'
import { glob } from 'tinyglobby'
2021-12-22 13:04:06 +00:00
const templatesRoot = fileURLToPath(new URL('..', import.meta.url))
2021-12-22 13:04:06 +00:00
async function main () {
const templates = await glob(['dist/templates/*.js'], { cwd: templatesRoot })
2021-12-22 13:04:06 +00:00
for (const file of templates) {
const { template } = await import(file)
const updated = template({
// messages: {},
name: '{{ name }}', // TODO
2021-12-22 13:04:06 +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)