From 9d75abecdd43f78ad07a16d8d8408da84d79d92f Mon Sep 17 00:00:00 2001 From: emmanuel Date: Tue, 19 Nov 2024 06:32:19 -0500 Subject: [PATCH] Fix invalid npm command in contributing guidelines (#1518) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f96d62412..4047b6852 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,7 +26,7 @@ instructions: ### Quick start 1. fork the repo and clone it locally -2. `npm run ci` to install dependencies +2. `npm ci` to install dependencies 3. `cd plugins/` 4. `npm run build && npm run test` to build and test the plugin after making changes 5. open a pull request with the changes