From 3dfdef0678d77a5673573bd0512586b5f28aeb33 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 17 Apr 2023 17:05:42 +0200 Subject: [PATCH] chore: Make renovate update dependencies of examples (#311) config:base uses a somewhat extensive ignore list: https://docs.renovatebot.com/presets-default/#ignoremodulesandtests so we have to overwrite it with the paths we actually want to ignore (not the examples dirs). I left the rest of the default list in there even though most of the entries don't and won't apply to this repo. --- renovate.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/renovate.json b/renovate.json index a7360f17..e5bc528f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,15 @@ { "extends": ["config:base"], "enabledManagers": ["cargo", "npm"], + "ignorePaths": [ + "**/node_modules/**", + "**/bower_components/**", + "**/vendor/**", + "**/__tests__/**", + "**/test/**", + "**/tests/**", + "**/__fixtures__/**" + ], "packageRules": [ { "description": "Disable node/pnpm version updates",