From e6fa4cce576df18ba491e59fb875385b6cc002be Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 3 Jul 2025 12:26:04 -0700 Subject: [PATCH] docs: suggest installing corepack and using yarn for installing deps --- CONTRIBUTING.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bb11a85c..458fe1406 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,11 +30,12 @@ To send us a pull request, please: 1. Fork the repository. 2. Use [ASTExplorer](https://astexplorer.net/) with category `JavaScript` and parser `acorn` for examining the AST. -3. Modify the source; please focus on the specific change you are contributing. -4. Ensure local tests pass. -5. Commit to your fork using clear commit messages. -6. Send us a pull request, answering any default questions in the pull request interface. -7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. +3. Globally install `npm i -g corepack`, and run `yarn` for installing dependencies. +4. Modify the source; please focus on the specific change you are contributing. +5. Ensure local tests pass. +6. Commit to your fork using clear commit messages. +7. Send us a pull request, answering any default questions in the pull request interface. +8. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation. GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and [creating a pull request](https://help.github.com/articles/creating-a-pull-request/).