mirror of
https://github.com/Afilmory/afilmory
synced 2026-05-02 10:46:50 +00:00
17 lines
358 B
TypeScript
17 lines
358 B
TypeScript
import path from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
import { $ } from 'execa'
|
|
|
|
import { precheck } from './precheck'
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|
const workdir = path.resolve(__dirname, '..')
|
|
|
|
async function main() {
|
|
await precheck()
|
|
await $({ cwd: workdir, stdio: 'inherit' })`vite build`
|
|
}
|
|
|
|
main()
|