From 41cd6733d9e7e9d27c625275fa48564671922ba7 Mon Sep 17 00:00:00 2001 From: AJ Lemos Date: Thu, 6 Nov 2025 14:42:06 -0800 Subject: [PATCH 1/2] Update CONTRIBUTING.md to reflect pnpm and vitest usage The repo was updated to use pnpm here: https://github.com/rpldy/react-uploady/pull/611 The repo was updated to use vitest here: https://github.com/rpldy/react-uploady/pull/604 --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e1e8ededc..aea51fdfa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,22 +19,22 @@ git clone https://github.com/your-username/react-uploady.git ### Building ```bash -$ yarn install +$ pnpm install ``` then: ```bash -$ yarn build +$ pnpm build ``` ### Testing In order to verify there are no issues, run: ``` -$ yarn test +$ pnpm test ``` -this will run flow, lint, jest +this will run flow, lint, vitest each one of these has a corresponding script to run separately. @@ -43,7 +43,7 @@ each one of these has a corresponding script to run separately. to run SB locally, run ```bash -$ yarn start +$ pnpm start ``` ### E2E From c355c66dd15f2d7bced86d30ecbcccd4017f3058 Mon Sep 17 00:00:00 2001 From: AJ Lemos Date: Mon, 10 Nov 2025 09:21:06 -0800 Subject: [PATCH 2/2] Update CONTRIBUTING.md Co-authored-by: Yoav Niran --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aea51fdfa..803e518b7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ In order to verify there are no issues, run: $ pnpm test ``` -this will run flow, lint, vitest +this will run flow, lint, vitest, (TS) type-check each one of these has a corresponding script to run separately.