修改文件结构,统一文档格式
This commit is contained in:
76
.gitignore
vendored
76
.gitignore
vendored
@@ -4,6 +4,7 @@ node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
@@ -11,12 +12,17 @@ yarn-error.log*
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.*.local
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
*/dist/
|
||||
*/build/
|
||||
out/
|
||||
.nuxt/
|
||||
.next/
|
||||
.cache/
|
||||
|
||||
# IDE files
|
||||
.vscode/
|
||||
@@ -24,6 +30,8 @@ build/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
@@ -38,24 +46,86 @@ Thumbs.db
|
||||
logs/
|
||||
*.log
|
||||
*/logs/
|
||||
|
||||
# Runtime data
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
# Runtime data
|
||||
lib-cov
|
||||
coverage/
|
||||
.nyc_output
|
||||
.grunt
|
||||
bower_components
|
||||
.lock-wscript
|
||||
|
||||
# Database
|
||||
*.sqlite
|
||||
*.db
|
||||
*.sql.backup
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
.tmp/
|
||||
|
||||
# Testing
|
||||
.jest/
|
||||
.coverage/
|
||||
test-results/
|
||||
junit.xml
|
||||
|
||||
# Documentation
|
||||
.docusaurus/
|
||||
|
||||
# Deployment
|
||||
.vercel
|
||||
.netlify
|
||||
|
||||
# Package manager lock files (optional)
|
||||
# package-lock.json
|
||||
# yarn.lock
|
||||
|
||||
# Project specific
|
||||
# Backup files
|
||||
*.backup
|
||||
*.bak
|
||||
*.orig
|
||||
|
||||
# Security
|
||||
secrets/
|
||||
*.pem
|
||||
*.key
|
||||
*.cert
|
||||
*.crt
|
||||
|
||||
# Performance monitoring
|
||||
.tsbuildinfo
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.parcel-cache
|
||||
|
||||
Reference in New Issue
Block a user