From 30584dbd8b6324d4204e940b2e0b28126bee085f Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Tue, 3 Oct 2023 12:32:37 +0200 Subject: [PATCH] Chore: Remove systemjs from renovate ignore (#75646) chore(renovate): remove systemjs from ignore list and fix storybook patterns --- .github/renovate.json5 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index be44fa33c7d..b97b9c70036 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -4,7 +4,6 @@ ], "enabledManagers": ["npm"], "ignoreDeps": [ - "@types/systemjs", "commander", // we are planning to remove this, so no need to update it "execa", // we should bump this once we move to esm modules "history", // we should bump this together with react-router-dom @@ -13,7 +12,6 @@ "react-hook-form", // due to us exposing these hooks via @grafana/ui form components bumping can break plugins "react-redux", // react-beautiful-dnd depends on react-redux 7.x, we need to update that one first "react-router-dom", // we should bump this together with history - "systemjs", "ts-loader", // we should remove ts-loader and use babel-loader instead "ora", // we should bump this once we move to esm modules "@locker/near-membrane-dom", // critical library. we need to bump this only intentionally @@ -26,12 +24,12 @@ "packageRules": [ { "matchUpdateTypes": ["patch"], - "excludePackagePatterns": ["@storybook"], + "excludePackagePatterns": ["^@?storybook"], "extends": ["schedule:monthly"], "groupName": "Monthly patch updates" }, { - "matchPackagePatterns": ["@storybook"], + "matchPackagePatterns": ["^@?storybook"], "extends": ["schedule:monthly"], "groupName": "Storybook updates" },