From dc66b01441fb7cee37d22d4d395779bff79478b8 Mon Sep 17 00:00:00 2001 From: Nico Vignola Date: Tue, 12 May 2026 15:12:14 +0200 Subject: [PATCH] chore(renovate): declare Node 22.22.1 constraint Without a declared Node constraint, Renovate cannot detect when a dependency update raises the project's required Node version. Setting constraints.node lets Renovate filter or flag incompatible updates before they reach review (e.g. lint-staged v17's bump to >=22.22.1 in #102). This lives in renovate.json rather than package.json's engines field to avoid leaking a development-only constraint to consumers of the published library. Co-Authored-By: Claude Opus 4.7 --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index 61c2c12..eb91990 100644 --- a/renovate.json +++ b/renovate.json @@ -3,6 +3,9 @@ "schedule": ["before 7am every weekday"], "updateNotScheduled": false, "reviewers": ["team:frontend-product"], + "constraints": { + "node": "22.22.1" + }, "prBodyNotes": [ "## Reference\n", " - See [Keeping dependencies up-to-date](https://handbook.doist.com/doc/keeping-dependencies-up-to-date-Qf28E929N5) for reviewing guidelines."