重构:提交全新项目代码

This commit is contained in:
2026-05-04 00:04:03 +08:00
commit bca6c31df7
100 changed files with 5524 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# 基础忽略规则
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
*.swp
*.swo
# 根目录依赖/构建产物
node_modules/
dist/
build/
coverage/
# Monorepo 子包专属忽略(核心)
packages/**/dist/
packages/**/node_modules/
packages/**/build/
packages/**/coverage/
packages/**/.env*
packages/**/npm-debug.log*
packages/**/yarn-debug.log*
packages/**/yarn-error.log*
packages/**/pnpm-debug.log*