feat: migrated packages to ts

This commit is contained in:
Haoyu Xu
2025-05-02 02:27:42 +08:00
parent 0af0c785d4
commit 8f6f537c81
111 changed files with 3166 additions and 1155 deletions

View File

@@ -0,0 +1,28 @@
import { envParser, error } from '@aklive2d/libs'
import { build } from './index.js'
async function main() {
let err = []
const { mode, name } = envParser.parse({
mode: {
type: 'string',
short: 'm',
},
name: {
type: 'string',
short: 'n',
multiple: true,
default: [],
},
}) as { mode: string; name: string[] }
switch (mode) {
case 'build':
err = build(name)
break
default:
throw new Error(`Unknown mode: ${mode}`)
}
error.handle(err)
}
main()