mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
21 lines
516 B
JavaScript
21 lines
516 B
JavaScript
import { fileURLToPath } from 'node:url'
|
|
import fs from 'node:fs'
|
|
|
|
import { build } from 'vite'
|
|
|
|
const jsonResumeThemeCustom = new URL('../', import.meta.url)
|
|
const jsonResumeThemeCustomDist = new URL('./dist', jsonResumeThemeCustom)
|
|
const publicResumeOutputURL = new URL(
|
|
'../../public/curriculum-vitae',
|
|
import.meta.url
|
|
)
|
|
|
|
await build({
|
|
root: fileURLToPath(jsonResumeThemeCustom),
|
|
base: '/curriculum-vitae/'
|
|
})
|
|
|
|
await fs.promises.cp(jsonResumeThemeCustomDist, publicResumeOutputURL, {
|
|
recursive: true
|
|
})
|