diff options
| author | Valentin Popov <valentin@popov.link> | 2025-05-23 13:47:27 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2025-05-23 13:47:27 +0300 | 
| commit | d74d8acdc23b065768b875e62178b5872bbd7da3 (patch) | |
| tree | f22c1cbd728c0c22042a42325f44d2a8525c96d0 | |
| parent | c47b9f903764589d84934c7877cb5667280a57ad (diff) | |
| download | popov.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.json | 17 | 
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 -  } +  ]  } | 
