14 lines
473 B
Markdown
14 lines
473 B
Markdown
## 1. 移除冗余文件和配置
|
|
|
|
- [x] 1.1 删除根目录 `index.ts` 文件
|
|
- [x] 1.2 从 `package.json` 中移除 `"module": "src/server/dev.ts"` 字段
|
|
|
|
## 2. 构建后清理中间产物
|
|
|
|
- [x] 2.1 在 `scripts/build.ts` 的 `Bun.build()` 成功后添加清理 `.build/` 目录的代码
|
|
|
|
## 3. 验证
|
|
|
|
- [x] 3.1 运行 `bun run check` 确认类型检查、lint、格式化、测试全部通过
|
|
- [x] 3.2 运行 `bun run verify` 确认完整构建和 smoke test 通过
|