docs: point to .node-version instead of restating it - #56
Conversation
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
The change is a straightforward documentation update with valid links and no behavioral impact on the codebase.
Review effort: Lite
Findings: None
What changed in this PR
This PR updates contributor onboarding docs to avoid duplicating the project’s Node.js version requirement by pointing readers to the single source of truth in .node-version, and adds a direct link to pnpm installation instructions.
Changes:
- Replaces the hardcoded Node version text in
CONTRIBUTING.mdwith a link to.node-version. - Links to the official pnpm installation page to help contributors install pnpm correctly.
| File | Description |
|---|---|
| CONTRIBUTING.md | Removes duplicated Node version requirement and replaces it with links to .node-version and pnpm installation docs. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Problem
CONTRIBUTING restated the Node range (
>=24.19.0) that.node-versionandengines.nodealready declare.Solution
Point contributors at
.node-version, and link the pnpm install page.Proof
pnpm run checkpasses; the pre-push verify gate passed.