From d970d0a8cc362ca6eb1a028d8d523f13e21e0861 Mon Sep 17 00:00:00 2001 From: JSONbored <49853598+JSONbored@users.noreply.github.com> Date: Sun, 14 Jun 2026 07:34:51 -0700 Subject: [PATCH] chore: remove accidental self-referential node_modules symlink A `node_modules` symlink pointing at its own absolute path was accidentally committed in #680, shadowing the real install with a circular link ("too many levels of symbolic links") that breaks node_modules/.bin/* resolution on fresh checkouts. CI is unaffected because `npm ci` removes node_modules before installing, but local tooling (tsc, vitest) fails until the symlink is cleared. The directory is already covered by .gitignore (node_modules/), so untracking the symlink blob restores correct behavior with no runtime or deploy impact. --- node_modules | 1 - 1 file changed, 1 deletion(-) delete mode 120000 node_modules diff --git a/node_modules b/node_modules deleted file mode 120000 index 19312f3996..0000000000 --- a/node_modules +++ /dev/null @@ -1 +0,0 @@ -/Users/shadowbook/Documents/gittensory/node_modules \ No newline at end of file