From 991e04ffa3591e506495143629e73550387b1784 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sun, 12 Apr 2026 12:19:42 -0400 Subject: [PATCH] chore: Expand gitignore patterns for PDF.js build artifacts - Add web/static/*.mjs to ignore compiled JavaScript modules - Add web/static/text_layer_builder*.css for PDF.js text layer CSS files - Add web/static/annotation_layer_builder*.css for PDF.js annotation layer CSS These files are generated during the PDF.js build process and should not be tracked in version control. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 1c978d3..efea325 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,10 @@ package-lock.json # Exception: Downloaded documentation dependencies web/static/compiled-*.js web/static/*.js +web/static/*.mjs web/static/assets/*.js +web/static/text_layer_builder*.css +web/static/annotation_layer_builder*.css # Downloaded documentation dependencies (tracked in git) !web/static/htmx.min.js