From 6e156712abaac5414bcad7612fa28673c6b67c76 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 15 Mar 2026 11:14:06 +0000 Subject: [PATCH] chore: add node >=24 constraint to renovate config (#2831) Adds constraints.node >= 24 to renovate.json so Renovate generates lock files with npm 11 (Node 24). Reviewed-on: https://gitea.unbound.se/dancefinder/dancefinder-app/pulls/2831 --- renovate.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 3eb7c6e..a193ac7 100644 --- a/renovate.json +++ b/renovate.json @@ -17,5 +17,8 @@ "stylelint-config-standard" ] } - ] + ], + "constraints": { + "node": ">=24" + } }