From 9b04424ccdb3f8291c882856a71834e2d498ab53 Mon Sep 17 00:00:00 2001 From: Sparsh Date: Sat, 23 May 2026 22:04:39 +0530 Subject: [PATCH] fix(deps): Install tree-sitter-kotlin for Kotlin ingestion tree-sitter-kotlin was listed in gitnexus/package.json dependencies but was not installed in node_modules because its native build step requires Python 3, make, and g++ which are not available on Windows by default. Running npm install downloads the prebuilt binary and resolves the TS2307 error that caused the pre-commit typecheck hook to fail on every commit touching the gitnexus/ package. Refs GH-985 --- gitnexus/package-lock.json | 1 + 1 file changed, 1 insertion(+) diff --git a/gitnexus/package-lock.json b/gitnexus/package-lock.json index 95da20de2..b19055a61 100644 --- a/gitnexus/package-lock.json +++ b/gitnexus/package-lock.json @@ -39,6 +39,7 @@ "tree-sitter-go": "^0.23.0", "tree-sitter-java": "^0.23.5", "tree-sitter-javascript": "^0.23.0", + "tree-sitter-kotlin": "^0.3.8", "tree-sitter-php": "^0.23.0", "tree-sitter-python": "0.23.4", "tree-sitter-ruby": "^0.23.1",