* feat: migrate top turbo * ci: ci test * fix: fix codeql issues * feat: ci test * chore: lint * chore: misc changes * feat: rename vite helpers * feat: use fetch to handle assets * feat: update directory * feat: fetch charword table * feat: migrate download game data and detect missing voice files * feat: symlink relative path * feat: finish wrangler upload * feat: migrate wrangler download * feat: finish * chore: auto update * ci: update ci * ci: update ci --------- Co-authored-by: Halyul <Halyul@users.noreply.github.com>
39 lines
885 B
JavaScript
39 lines
885 B
JavaScript
import { envParser } from '@aklive2d/libs'
|
|
import { build, init } from './index.js'
|
|
|
|
async function main() {
|
|
const { mode, name, id } = envParser.parse({
|
|
mode: {
|
|
type: 'string',
|
|
short: 'm',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
short: 'n',
|
|
multiple: true,
|
|
default: [],
|
|
},
|
|
id: {
|
|
type: 'string',
|
|
},
|
|
})
|
|
switch (mode) {
|
|
case 'build':
|
|
await build(name)
|
|
break
|
|
case 'init':
|
|
if (!name.length) {
|
|
throw new Error('Please set the operator name.')
|
|
}
|
|
if (!id) {
|
|
throw new Error('Please set the operator id.')
|
|
}
|
|
init(name[0], id)
|
|
break
|
|
default:
|
|
throw new Error(`Unknown mode: ${mode}`)
|
|
}
|
|
}
|
|
|
|
main()
|