- 删除common层业务代码(将通过real-business-logic-generator.js重新生成) - 清理重复的core层生成工具 - 保留完整的企业级core层基础设施(Security/Cache/Tracing/Event/Queue/Health) - 版本号升级到0.3.3 - 项目架构现已完整,接下来专注优化PHP到TypeScript语法转换
70 lines
624 B
Plaintext
70 lines
624 B
Plaintext
# 依赖
|
|
node_modules
|
|
npm-debug.log*
|
|
|
|
# 构建输出
|
|
dist
|
|
build
|
|
|
|
# 环境文件
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# 日志
|
|
logs
|
|
*.log
|
|
|
|
# 运行时数据
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# 覆盖率目录
|
|
coverage
|
|
.nyc_output
|
|
|
|
# 依赖目录
|
|
node_modules
|
|
jspm_packages
|
|
|
|
# 可选npm缓存目录
|
|
.npm
|
|
|
|
# 可选eslint缓存
|
|
.eslintcache
|
|
|
|
# 微服务环境变量
|
|
.env.microservice
|
|
|
|
# IDE文件
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# 操作系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# 测试
|
|
test
|
|
tests
|
|
__tests__
|
|
|
|
# 文档
|
|
docs
|
|
*.md
|