From 25176e41fd4b42ffbe4d1f4b27b4b34f8328778e Mon Sep 17 00:00:00 2001 From: Carl-Erik Kopseng Date: Wed, 11 Sep 2024 13:43:48 +0200 Subject: [PATCH] Make a note in the contributing docs on minimal Node version --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 98a4e0fff98df49..7eeae896942dc3f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -158,6 +158,13 @@ node -v yarn -v ``` +Check that the Node version at least satisfies what is set in package.json: + +```shell +node -p -e "require('./package.json').engines.node" +>=18.20.0 +``` + After you have installed Node.js and Yarn, you can install the dependencies using `yarn`: ```bash