From 09ad4182dd2b487b6996b457f399d5a225fe58b3 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Tue, 19 Nov 2024 19:51:49 +0100 Subject: [PATCH] Bump minimum nodejs to v20 (#4417) --- docs/docs/92-development/01-getting-started.md | 2 +- web/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/92-development/01-getting-started.md b/docs/docs/92-development/01-getting-started.md index 4d93227c3..92af0fe4d 100644 --- a/docs/docs/92-development/01-getting-started.md +++ b/docs/docs/92-development/01-getting-started.md @@ -34,7 +34,7 @@ Install make on: ### Install Node.js & `pnpm` -Install [Node.js (>=14)](https://nodejs.org/en/download/) if you want to build Woodpecker's UI or documentation. +Install [Node.js (>=20)](https://nodejs.org/en/download/package-manager) if you want to build Woodpecker's UI or documentation. For dependency installation (`node_modules`) of UI and documentation of Woodpecker the package manager pnpm is used. [This guide](https://pnpm.io/installation) describes the installation of `pnpm`. diff --git a/web/package.json b/web/package.json index f9a181f6a..c4eecf9eb 100644 --- a/web/package.json +++ b/web/package.json @@ -5,7 +5,7 @@ "license": "Apache-2.0", "type": "module", "engines": { - "node": ">=14" + "node": ">=20" }, "scripts": { "start": "vite",