chore: add htmx.min.js and update gitignore for doc dependencies

- Added htmx.min.js to git (previously only downloaded during build)
- Updated .gitignore to explicitly allow documentation dependencies
- Clarified compiled vs downloaded JS in gitignore comments
This commit is contained in:
2026-02-02 21:23:19 -05:00
parent 0fe4a1dacc
commit e43e1f1f26
2 changed files with 10 additions and 0 deletions
+9
View File
@@ -17,8 +17,17 @@ package-lock.json
*.d.ts.map *.d.ts.map
# Compiled JavaScript (keep .ts source, ignore .js) # Compiled JavaScript (keep .ts source, ignore .js)
# Exception: Downloaded documentation dependencies
web/static/compiled-*.js
web/static/*.js web/static/*.js
# Downloaded documentation dependencies (tracked in git)
!web/static/htmx.min.js
!web/static/highlight.min.js
!web/static/highlight-dark.min.css
!web/static/lunr.min.js
!web/static/lunr-flex.min.js
# Temporary files # Temporary files
tmp/ tmp/
temp/ temp/
+1
View File
File diff suppressed because one or more lines are too long