From d9baaaa9653a76fbb820c9cc2322a350622b5269 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Thu, 23 Jan 2025 22:16:49 +0100 Subject: [PATCH] detect/process package-lock --- .github/renovate/kinds/astro.json5 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate/kinds/astro.json5 b/.github/renovate/kinds/astro.json5 index 7c0614c2a37..dfd629f801b 100644 --- a/.github/renovate/kinds/astro.json5 +++ b/.github/renovate/kinds/astro.json5 @@ -3,7 +3,8 @@ "npm": { "fileMatch": [ "(^|/)website/.+/astro\\.config\\.(mjs|js|ts)$", // Matches Astro config files in /website and any subdirectory - "(^|/)website/.+/package\\.json$" // Matches package.json files in /website and any subdirectory + "(^|/)website/.+/package\\.json$", // Matches package.json files in /website and any subdirectory + "(^|/)website/.+/package-lock\\.json$" // Matches package.json files in /website and any subdirectory ], "branchPrefix": "renovate/astro-", "enabled": true, // Enable updates for website dependencies