mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
24 lines
705 B
TypeScript
24 lines
705 B
TypeScript
import { join, resolve } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { promises as fsp } from 'node:fs'
|
|
import { globby } from 'globby'
|
|
|
|
const templatesRoot = fileURLToPath(new URL('..', import.meta.url))
|
|
|
|
const r = (...path: string[]) => resolve(join(templatesRoot, ...path))
|
|
|
|
async function main () {
|
|
const templates = await globby(r('dist/templates/*.js'))
|
|
for (const file of templates) {
|
|
const { template } = await import(file)
|
|
const updated = template({
|
|
// messages: {},
|
|
name: '{{ name }}', // TODO
|
|
})
|
|
await fsp.mkdir(file.replace('.js', ''))
|
|
await fsp.writeFile(file.replace('.js', '/index.html'), updated)
|
|
}
|
|
}
|
|
|
|
main().catch(console.error)
|