From 24bc7255d4efd4ded77803375e8b8e9916736e50 Mon Sep 17 00:00:00 2001 From: Xavier Balloy <686305+xballoy@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:55:22 -0500 Subject: [PATCH] chore: update renovate config to update engine.vscode version --- renovate.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/renovate.json b/renovate.json index f8942e6..12ad299 100644 --- a/renovate.json +++ b/renovate.json @@ -9,12 +9,26 @@ "customManagers:biomeVersions" ], "labels": ["dependencies"], + "packageRules": [ + { + "matchDepNames": ["@types/vscode"], + "rangeStrategy": "bump" + } + ], "customManagers": [ { "customType": "regex", "fileMatch": ["^.github/(?:workflows|actions)/.+\\.ya?ml$"], "matchStrings": ["os: (?.*)-(?.*)"], "datasourceTemplate": "github-runners" + }, + { + "customType": "jsonata", + "fileFormat": "json", + "fileMatch": ["^package.json$"], + "depNameTemplate": "@types/vscode", + "matchStrings": ["engines.{ \"currentValue\": vscode}"], + "datasourceTemplate": "npm" } ] }