one
Version:
One is a new React Framework that makes Vite serve both native and web.
16 lines (13 loc) • 308 B
text/typescript
import { loadUserOneOptions } from '../vite/loadConfig'
export async function run(args: {
platform?: string
expo: boolean
'no-install'?: boolean
}) {
await loadUserOneOptions('build', true)
const { prebuild } = await import('vxrn')
await prebuild({
root: process.cwd(),
...args,
})
}