From 920d27a625128feccb2b8cf8d624490e78fb682e Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Mon, 15 Nov 2021 11:44:25 +0100 Subject: [PATCH] docs: bump npm version used in example (#12660) --- docs/usage/node.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/usage/node.md b/docs/usage/node.md index 338b37a485..b7539087b6 100644 --- a/docs/usage/node.md +++ b/docs/usage/node.md @@ -24,12 +24,12 @@ When `binarySource=docker`, such as in the hosted WhiteSource Renovate App, Reno To control which version or constraint is installed, you should use the `engines.npm` property in your `package.json` file. Renovate bot will then use that version constraint for npm when it creates a pull request. -For example, if you want to use at least npm `6.14.11` and also allow newer versions of npm in the `6.x` range, you would put this in your `package.json` file: +For example, if you want to use at least npm `8.1.0` and also allow newer versions of npm in the `8.x` range, you would put this in your `package.json` file: ```json { "engines": { - "npm": "^6.14.11" + "npm": "^8.1.0" } } ``` -- GitLab