From 0e2864fef5a8f384447fc5ca5f0b6fe293f00b15 Mon Sep 17 00:00:00 2001 From: J3m5 <5523410+J3m5@users.noreply.github.com> Date: Tue, 15 Jul 2025 23:57:19 +0200 Subject: [PATCH] docs(readme): update contribution guidelines - Clarified installation steps for pnpm - Updated numbering for contribution steps Signed-off-by: J3m5 <5523410+J3m5@users.noreply.github.com> --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index aa308db..f8150da 100644 --- a/README.md +++ b/README.md @@ -288,13 +288,15 @@ Contributions are welcome! To contribute: 2. **Fork the repository and create a feature branch.** -3. **Install dependencies** +3. **Ensure you have the _latest_ version of [pnpm](https://pnpm.io/installation) installed.** + +4. **Install dependencies** ```bash pnpm install ``` -4. **Adhere to the code style** +5. **Adhere to the code style and lint rules** ```bash pnpm lint:fix @@ -304,19 +306,19 @@ Contributions are welcome! To contribute: pnpm format ``` -5. **Run tests** +6. **Run tests** ```bash pnpm test ``` -6. **Ensure type correctness** +7. **Ensure type correctness** ```bash pnpm typecheck ``` -7. **Submit a pull request with a clear description of your changes.** +8. **Submit a pull request with a clear description of your changes.** ## 👥 Contributors