From 19e650ff920ddfb8ec90006aa8a8f0bb2d988b4e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 11 Jul 2026 13:39:51 +0000 Subject: [PATCH] chore: stop tracking the node_modules Tailwind-shim symlink A dangling node_modules symlink pointing into a build-time scratch dir was accidentally committed via #20's CSS rebuild and inherited by every branch since. It's harmless to the pure-Go build but resolves to nothing on any other clone. Remove it and gitignore /node_modules and /.tools/ so the Tailwind CLI shim can't be committed again. Co-Authored-By: Claude Fable 5 --- .gitignore | 4 ++++ node_modules | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) delete mode 120000 node_modules diff --git a/.gitignore b/.gitignore index 4e47759..defc158 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,7 @@ # Transient agent worktrees (created under the repo by background agents) /.claude/ + +# Tailwind CLI shim scratch (see Makefile css target / CONTRIBUTING) — never commit +/node_modules +/.tools/ diff --git a/node_modules b/node_modules deleted file mode 120000 index d1d4fa9..0000000 --- a/node_modules +++ /dev/null @@ -1 +0,0 @@ -/tmp/claude-0/-home-user-msgbrowse/d0967623-e874-5d81-9c5a-ef60246daa9c/scratchpad/twcli/node_modules \ No newline at end of file