fbcc5f8f5b
- Update head-styles.html to always load bundle.min.css - Remove development/production conditional CSS loading - Add CSS auto-rebuild to pre-commit hook - Track bundle.min.css in git (unignore it) - Reduces initial CSS requests from 28+ to 1
67 lines
853 B
Plaintext
67 lines
853 B
Plaintext
# Binaries
|
|
cv-server
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binaries
|
|
*.test
|
|
|
|
# Output
|
|
*.out
|
|
|
|
# Go workspace
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp files
|
|
*.tmp
|
|
*.log
|
|
cv-app
|
|
static/psd
|
|
static/psd/yo DNI.psd
|
|
|
|
# CSS build output (generated by Lightning CSS)
|
|
# We track bundle.min.css for production but ignore dev bundle
|
|
static/dist/bundle.css
|
|
!static/dist/bundle.min.css
|
|
|
|
# Temporary implementation artifacts (prevent clutter)
|
|
*_SUMMARY.md
|
|
*_REPORT.md
|
|
*_COMPLETE.md
|
|
*-COMPLETE.md
|
|
*-FIXES.md
|
|
*-VALIDATION.md
|
|
QUICK_START_*.md
|
|
benchmark_*.sh
|
|
verify_*.sh
|
|
validate_*.sh
|
|
test_*.sh
|
|
final_validation.sh
|
|
|
|
# Coverage reports
|
|
coverage.html
|
|
coverage.out
|
|
*.coverprofile
|
|
.claude
|
|
playwright.config.js
|
|
|
|
# Test artifacts
|
|
tests/screenshots/
|
|
|
|
# Personal learning documentation README (private goals and notes)
|
|
_go-learning/README.md
|