Chore: Remove systemjs from renovate ignore (#75646)

chore(renovate): remove systemjs from ignore list and fix storybook patterns
This commit is contained in:
Jack Westbrook 2023-10-03 12:32:37 +02:00 committed by GitHub
parent 3c8cea0764
commit 30584dbd8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,6 @@
], ],
"enabledManagers": ["npm"], "enabledManagers": ["npm"],
"ignoreDeps": [ "ignoreDeps": [
"@types/systemjs",
"commander", // we are planning to remove this, so no need to update it "commander", // we are planning to remove this, so no need to update it
"execa", // we should bump this once we move to esm modules "execa", // we should bump this once we move to esm modules
"history", // we should bump this together with react-router-dom "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-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-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 "react-router-dom", // we should bump this together with history
"systemjs",
"ts-loader", // we should remove ts-loader and use babel-loader instead "ts-loader", // we should remove ts-loader and use babel-loader instead
"ora", // we should bump this once we move to esm modules "ora", // we should bump this once we move to esm modules
"@locker/near-membrane-dom", // critical library. we need to bump this only intentionally "@locker/near-membrane-dom", // critical library. we need to bump this only intentionally
@ -26,12 +24,12 @@
"packageRules": [ "packageRules": [
{ {
"matchUpdateTypes": ["patch"], "matchUpdateTypes": ["patch"],
"excludePackagePatterns": ["@storybook"], "excludePackagePatterns": ["^@?storybook"],
"extends": ["schedule:monthly"], "extends": ["schedule:monthly"],
"groupName": "Monthly patch updates" "groupName": "Monthly patch updates"
}, },
{ {
"matchPackagePatterns": ["@storybook"], "matchPackagePatterns": ["^@?storybook"],
"extends": ["schedule:monthly"], "extends": ["schedule:monthly"],
"groupName": "Storybook updates" "groupName": "Storybook updates"
}, },