From b755a7772ca7237ae7758017af62e493fef3ec75 Mon Sep 17 00:00:00 2001 From: Florian Hammerschmidt Date: Wed, 2 Nov 2022 12:11:49 +0100 Subject: [PATCH 1/2] Update CONTRIBUTING.md (remove yarn) --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8a5d788..e86f883 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,10 +43,10 @@ To make a pull request, you need to: 1. [Fork the repo](https://help.github.com/en/articles/fork-a-repo) 2. Clone it -3. Install dependencies using [Yarn](https://yarnpkg.com/) +3. Install dependencies using npm ```console -yarn +npm ``` 3. Create a local branch, from `master` (unless specified differently) @@ -63,7 +63,7 @@ git checkout -b 5. Ensure the everything is still fine. ```console -yarn test +npm run test ``` 6. Commit & push your branch online From 63a4be1403ce5e22c9bc1f90c5a12e181beabadf Mon Sep 17 00:00:00 2001 From: Florian Hammerschmidt Date: Wed, 2 Nov 2022 13:10:44 +0100 Subject: [PATCH 2/2] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e86f883..afd38e7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,7 +46,7 @@ To make a pull request, you need to: 3. Install dependencies using npm ```console -npm +npm install ``` 3. Create a local branch, from `master` (unless specified differently)