aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-05-23 13:47:27 +0300
committerValentin Popov <valentin@popov.link>2025-05-23 13:47:27 +0300
commitd74d8acdc23b065768b875e62178b5872bbd7da3 (patch)
treef22c1cbd728c0c22042a42325f44d2a8525c96d0
parentc47b9f903764589d84934c7877cb5667280a57ad (diff)
downloadpopov.link-d74d8acdc23b065768b875e62178b5872bbd7da3.tar.xz
popov.link-d74d8acdc23b065768b875e62178b5872bbd7da3.zip
Enhance Renovate configuration by adding range strategy and enabling lock file maintenance, while consolidating npm settings for improved dependency management.
-rw-r--r--renovate.json17
1 files changed, 9 insertions, 8 deletions
diff --git a/renovate.json b/renovate.json
index 167b6bf..85c2491 100644
--- a/renovate.json
+++ b/renovate.json
@@ -3,6 +3,14 @@
"extends": ["config:recommended", ":disableDependencyDashboard"],
"assignees": ["valentineus"],
"labels": ["dependencies"],
+ "rangeStrategy": "bump",
+ "npm": {
+ "enabled": true,
+ "ignoreScripts": false
+ },
+ "lockFileMaintenance": {
+ "enabled": true
+ },
"packageRules": [
{
"description": "Group patch & minor updates together",
@@ -12,12 +20,5 @@
"matchPackageNames": ["*"],
"automerge": true
}
- ],
- "npm": {
- "enabled": true,
- "ignoreScripts": false
- },
- "lockFileMaintenance": {
- "enabled": true
- }
+ ]
}