7d5e6938b6
- Remove .kiro/ directory (Kiro IDE specific files) - Remove .github/ directory (GitHub workflows) - Remove coverage/ directory (test coverage reports) - Remove local .gimsrc config file - Update .gitignore to exclude dev/build directories - Keep only essential project files for npm package
59 lines
657 B
Plaintext
59 lines
657 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Lock files (keep package-lock.json for consistency)
|
|
bun.lock
|
|
yarn.lock
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
|
|
# Development and build tools
|
|
.kiro/
|
|
.github/
|
|
.npm-cache/
|
|
.cache/
|
|
dist/
|
|
build/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Local configuration files
|
|
.gimsrc |