From d42c92e18e2fd148ff000d74fafe4d8e8e46bdc4 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sun, 1 Feb 2026 01:21:24 -0500 Subject: [PATCH] chore(gitignore): let Docker handle all compiled JavaScript assets Remove exception for htmx.min.js so all compiled JavaScript in web/static/ is ignored and generated during Docker build. The Dockerfile already handles downloading HTMX via: - npm postinstall script - Downloads from unpkg.com during container build This keeps the repository clean and lets the container build process generate all static assets consistently. --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6523c27..1b6f323 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ package-lock.json # Compiled JavaScript (keep .ts source, ignore .js) web/static/*.js -!web/static/htmx.min.js # Temporary files tmp/