From 591952b530267e1323ba642fb04960e66c8ac421 Mon Sep 17 00:00:00 2001 From: Pedro Ferreira <10789765+apedroferreira@users.noreply.github.com> Date: Wed, 21 Feb 2024 18:17:32 +0000 Subject: [PATCH] Update CONTRIBUTING.md (#3114) Signed-off-by: Pedro Ferreira <10789765+apedroferreira@users.noreply.github.com> --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5977d0eb0e7..f2efde3fc12 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -110,13 +110,13 @@ pnpm install 1. Replace `` with the path to the toolpad monorepo on your file system. Make sure to keep `portal:`. - 1. In order to use `portal:` dependencies, we will need to use pnpm 2. So start by running + 1. In order to use `portal:` dependencies, we will need to use yarn 2. So start by running ```bash - pnpm set version berry + yarn set version berry ``` - and add to the `.pnpmrc.yml`: + and add to the `.yarnrc.yml`: ```yaml nodeLinker: node-modules @@ -125,13 +125,13 @@ pnpm install 1. then run ```bash - pnpm install + yarn install ``` 1. Run start toolpad in dev mode: ```bash - pnpm dev + yarn dev ```