diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e1e8ededc..803e518b7 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, (TS) type-check 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