chore: init read-star monorepo
This commit is contained in:
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
# --- 依赖与构建输出 ---
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
# 忽略所有子应用的构建输出
|
||||
apps/*/dist
|
||||
packages/*/dist
|
||||
|
||||
# --- 日志文件 ---
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# --- 系统与编辑器 ---
|
||||
.DS_Store
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
!.vscode/launch.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# --- 测试与覆盖率 ---
|
||||
coverage
|
||||
/cypress/videos/
|
||||
/cypress/screenshots/
|
||||
.VSCodeCounter
|
||||
|
||||
# --- Lock 文件 ---
|
||||
# 在 pnpm 工作区中,只需保留根目录的 pnpm-lock.yaml
|
||||
# 如果有残留的 lock 文件建议忽略或删除
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# --- 环境变量 ---
|
||||
# 保护敏感信息,只允许提交 .env.example
|
||||
.env
|
||||
.env.production
|
||||
.env.test
|
||||
!.env.example
|
||||
|
||||
# --- 特色插件生成文件 ---
|
||||
# 如果你希望路由自动生成文件不进入版本管理(可选)
|
||||
# apps/*/src/typings/elegant-router.d.ts
|
||||
Reference in New Issue
Block a user