diff options
author | Valentin Popov <valentin@popov.link> | 2025-05-23 10:42:39 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-05-23 10:42:39 +0300 |
commit | 6adb4755813282313538991cc0c0636f376de0d3 (patch) | |
tree | 900787ded454885655f8989827420d4b6bcb8a33 /.renovaterc | |
parent | 725ec5df89555749e0f9667162ed4a5bf9e7fd91 (diff) | |
download | popov.link-6adb4755813282313538991cc0c0636f376de0d3.tar.xz popov.link-6adb4755813282313538991cc0c0636f376de0d3.zip |
Updated Renovate configuration to enable npm settings, added post-upgrade tasks for smoother dependency management, and refined command execution for package updates.
Diffstat (limited to '.renovaterc')
-rw-r--r-- | .renovaterc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.renovaterc b/.renovaterc index 6ee9175..ee35429 100644 --- a/.renovaterc +++ b/.renovaterc @@ -9,5 +9,14 @@ "matchUpdateTypes": ["minor", "patch", "pin", "digest"], "matchPackageNames": ["*"] } - ] -}
\ No newline at end of file + ], + "npm": { + "enabled": true, + "requireConfig": false, + "ignoreScripts": false + }, + "postUpgradeTasks": { + "commands": ["npm install"], + "fileFilters": ["package.json"] + } +} |