From 59b45f85058af3bb6ffb0aab2fb6254d4bcda37b Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 25 Nov 2025 23:30:00 +0200 Subject: [PATCH] docs: update Node.js requirement to match CI configuration - Change Node.js requirement from v16 to v22+ to align with CI matrix - Update tree-sitter CLI recommendation from global install to npx usage - Matches actual devDependency configuration in package.json Addresses PR #1 review comment from CodeRabbit. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 720dcf1..f78132f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,8 +17,8 @@ Thank you for your interest in contributing to tree-sitter-shellspec! This docum ### Prerequisites -- [Node.js](https://nodejs.org/) (v16 or later) -- [Tree-sitter CLI](https://github.com/tree-sitter/tree-sitter/tree/master/cli): `npm install -g tree-sitter-cli` +- [Node.js](https://nodejs.org/) (v22 or later) +- Tree-sitter CLI (provided via devDependency) — use `npx tree-sitter ` - [Git](https://git-scm.com/) - Basic knowledge of [Tree-sitter grammars](https://tree-sitter.github.io/tree-sitter/creating-parsers) - Familiarity with [ShellSpec](https://shellspec.info/) syntax