From 2d746c0d330268cff0587212d5d3c23c362ebf28 Mon Sep 17 00:00:00 2001 From: Jason Stedwell Date: Fri, 7 Aug 2026 15:14:10 -0500 Subject: [PATCH] chore: gitignore output/ and tmp/ demo-PDF artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both are generated by scripts/build_demo_pdf.py — output/ holds the rendered demo.pdf, tmp/ the intermediate page PNGs it rasterizes on the way there (~2 MB of them). Same category as the existing dist-* entries, so grouped with them. scripts/build_demo_pdf.py itself is deliberately left untracked rather than ignored — it is source, not output, and whether it belongs in the repo is a separate call. Co-Authored-By: Claude Opus 5 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 34eb815..a47de13 100755 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,11 @@ dist-showcase/ dist-demo/ *.log .DS_Store + +# Generated by scripts/build_demo_pdf.py — the rendered demo PDF and the +# intermediate page PNGs it rasterizes on the way there (~2 MB). +output/ +tmp/ # impeccable-ignore-start .impeccable/config.local.json .impeccable/hook.cache.json