From 0e0f22e54878d43c1ed9772f19edc97a46b1d730 Mon Sep 17 00:00:00 2001 From: kenny yong Date: Mon, 10 Aug 2026 15:27:35 +0800 Subject: [PATCH] Ignore node_modules in .gitignore The root package.json makes this repo an npm package; local installs and the postinstall step create node_modules/. Keep it out of version control. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9ea4dc3..85b9c45 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,9 @@ *.so *.dylib +# npm (root package.json ships the CLI; installs create these) +/node_modules/ + # Go test / coverage artifacts *.test *.out