vailabel/vailabel-studio
GitHub で見るchore: Pin the Node version with .nvmrc and an engines field
Open
#242 opened on 2026年6月19日
good first issuehacktoberfest
Repository metrics
- Stars
- (62 stars)
- PR merge metrics
- (PR metrics pending)
説明
Summary
The README requires Node 20+, but nothing enforces it. Adding .nvmrc and an engines field gives contributors a one-command way to use the right version.
Where
- New file
.nvmrcat repo root. - Root
package.json.
Steps
- Branch:
git checkout -b chore/pin-node-version. - Create
.nvmrcwith a single line:20. - In root
package.jsonadd:"engines": { "node": ">=20" } - Add one line to README/CONTRIBUTE prerequisites: "Run
nvm useto match the project's Node version." - Run
yarn installthenyarn lint. - Commit
chore: pin node version via .nvmrc and enginesand open a PR.
Acceptance criteria
.nvmrcexists with20.- Root
package.jsonhasengines.node. nvm useselects Node 20.
Good first issue — comment here if you'd like to take it.