From 92843d61c0af9641ac8400032264197426ca89d6 Mon Sep 17 00:00:00 2001 From: openhands Date: Mon, 23 Feb 2026 23:16:10 +0000 Subject: [PATCH] fix: onchain/lib/uni-v3-lib always dirty in git (#58) The root .gitignore had a typo: `node-modules` (hyphen) instead of `node_modules` (underscore), so the glob pattern never matched the directory that npm creates. The `ignore = dirty` setting in .gitmodules (added in #147) already suppresses the dirty-submodule report; this commit corrects the broken pattern so it also provides defence-in-depth at the parent-repo level. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fb801a6..332ca04 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ out/ .infura .DS_Store -/onchain/lib/**/node-modules/ +/onchain/lib/**/node_modules/ onchain/node_modules/ # Ignore vim files: