From 0de258dc50e338a1136d91d376f341dd3aba1805 Mon Sep 17 00:00:00 2001 From: sunnylqm Date: Sun, 30 Aug 2026 17:16:46 +0800 Subject: [PATCH] chore: ignore node_modules as a symlink too `node_modules/` only matches a directory, so a `node_modules` symlink (e.g. one pointing at another checkout from a git worktree) slipped into a commit and broke CI's `bun install`. Drop the slash so both are ignored. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01JCaS35vZG4DCtmM24MYaVR --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c06d32a..46d7546 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,7 @@ bower_components build/Release # Dependency directories -node_modules/ +node_modules jspm_packages/ # TypeScript v1 declaration files