You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: centralize Node.js version management with .nvmrc as SSOT (#476)
- Update .nvmrc to v24.11.0 (Node.js 24 LTS/Krypton)
- Add engines field to package.json requiring >=24.11.0
- Configure CI/CD workflows to read from .nvmrc via node-version-file
- Remove hardcoded NODE_VERSION env vars from workflows
- Align .coderabbit.yaml to reference 24.11.0
- Document .nvmrc as single source of truth in AGENTS.md
- Update README.md Prerequisites to reference .nvmrc
- Enhance README.md Features section with detailed descriptions
- Fix Tech Stack table alignment for markdownlint compliance
- Add commit message format guidelines to copilot-instructions.md
> 💡 **Note:** While the repository name references `ts-node` (the original implementation), the project now uses [tsx](https://github.com/privatenumber/tsx) for faster, cleaner TypeScript execution without experimental flags.
60
58
@@ -170,7 +168,7 @@ For complete endpoint documentation with request/response schemas, explore the [
170
168
171
169
Before you begin, ensure you have the following installed:
172
170
173
-
- Node.js 24 (LTS/Krypton) or higher
171
+
- Node.js (latest LTS - specific version in `.nvmrc`)
174
172
- npm (comes with Node.js)
175
173
- Docker and Docker Compose (optional, for containerized setup)
0 commit comments