From 76eaa21fb3732b54848986631a24184393e81d7c Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 21 Dec 2025 12:22:25 +0100 Subject: [PATCH] Add a npm rebuild option to the renovate.json (#47) Reviewed-on: https://git.horstenkamp.eu/Screeps/screeps-deploy-action/pulls/47 --- renovate.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index d2fb295..a73e067 100644 --- a/renovate.json +++ b/renovate.json @@ -10,9 +10,14 @@ "matchManagers": [ "npm" ], - "postUpdateOptions": [ - "npmInstall" - ] + "postUpgradeTasks": { + "commands": [ + "npm ci --ignore-scripts" + ], + "fileFilters": [ + "node_modules/**/*" + ] + } } ] }