aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fdf4bd3..b887c86 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -13,7 +13,7 @@
13 - [How Can I Contribute?](#how-can-i-contribute) 13 - [How Can I Contribute?](#how-can-i-contribute)
14 - [Setting up your Development machine](#setting-up-your-development-machine) 14 - [Setting up your Development machine](#setting-up-your-development-machine)
15 - [Install System-level dependencies](#install-system-level-dependencies) 15 - [Install System-level dependencies](#install-system-level-dependencies)
16 - [Node.js, npm, pnpm](#nodejs-npm-pnpm) 16 - [Node.js, npm, pnpm, python](#nodejs-npm-pnpm-python)
17 - [Git](#git) 17 - [Git](#git)
18 - [Clone repository with submodule](#clone-repository-with-submodule) 18 - [Clone repository with submodule](#clone-repository-with-submodule)
19 - [Install dependencies](#install-dependencies) 19 - [Install dependencies](#install-dependencies)
@@ -40,7 +40,7 @@ As a basic rule, before filing issues, feature requests or anything else, please
40 40
41### Install System-level dependencies 41### Install System-level dependencies
42 42
43#### Node.js, npm, pnpm 43#### Node.js, npm, pnpm, python
44 44
45Please make sure you are conforming to the `engines` requirements used by the developers/contributors as specified in the [`package.json`](./package.json#engines) and [`recipes/package.json`](./recipes/package.json#engine) files. 45Please make sure you are conforming to the `engines` requirements used by the developers/contributors as specified in the [`package.json`](./package.json#engines) and [`recipes/package.json`](./recipes/package.json#engine) files.
46 46
@@ -51,7 +51,8 @@ $ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.
51{ 51{
52 "node": "16.18.1", 52 "node": "16.18.1",
53 "npm": "8.19.2", 53 "npm": "8.19.2",
54 "pnpm": "7.18.1" 54 "pnpm": "7.18.1",
55 "python": "3.11.1"
55} 56}
56``` 57```
57 58