feat: 更新构建配置,修复解析逻辑并添加程序入口

This commit is contained in:
2026-02-03 16:40:45 +08:00
parent ce574e9fa7
commit d638370db1
6 changed files with 64 additions and 60 deletions

View File

@@ -1,5 +1,6 @@
#!/usr/bin/env bun
import { parse } from '../dist/app.js';
import { parse } from '../dist/program.js';
const args = process.argv.slice(2);
const result = parse(args);
const result = await parse(args);
console.log(result, args);