2021-10-13 06:25:12 -05:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"config:base"
|
|
|
|
],
|
|
|
|
"enabledManagers": ["npm"],
|
|
|
|
"ignoreDeps": [
|
2021-10-25 09:27:33 -05:00
|
|
|
"@types/systemjs",
|
2021-11-04 11:35:47 -05:00
|
|
|
"@types/d3-force", // we should bump this once we move to esm modules
|
2021-11-04 12:53:57 -05:00
|
|
|
"@types/d3-interpolate", // we should bump this once we move to esm modules
|
2021-11-04 11:35:47 -05:00
|
|
|
"@types/d3-scale-chromatic", // we should bump this once we move to esm modules
|
2021-11-22 11:32:31 -06:00
|
|
|
"@types/react-icons", // jaeger-ui-components is being refactored to use @grafana/ui icons instead
|
2021-10-13 06:25:12 -05:00
|
|
|
"d3",
|
2021-10-25 05:49:24 -05:00
|
|
|
"d3-force", // we should bump this once we move to esm modules
|
2021-11-04 12:53:57 -05:00
|
|
|
"d3-interpolate", // we should bump this once we move to esm modules
|
2021-11-04 11:35:47 -05:00
|
|
|
"d3-scale-chromatic", // we should bump this once we move to esm modules
|
2021-11-02 09:06:07 -05:00
|
|
|
"eslint", // wait until `eslint-plugin-react-hooks>4.2.0` is released
|
2021-11-19 09:56:59 -06:00
|
|
|
"execa", // we should bump this once we move to esm modules
|
2021-11-19 06:29:57 -06:00
|
|
|
"history", // we should bump this together with react-router-dom
|
2021-11-22 11:32:31 -06:00
|
|
|
"react-icons", // jaeger-ui-components is being refactored to use @grafana/ui icons instead
|
2021-11-19 06:29:57 -06:00
|
|
|
"react-router-dom", // we should bump this together with history
|
2021-10-13 06:25:12 -05:00
|
|
|
"slate",
|
|
|
|
"slate-plain-serializer",
|
|
|
|
"systemjs",
|
2022-01-13 07:58:26 -06:00
|
|
|
"copy-webpack-plugin", // try to upgrade with newer yarn release. Not working with 3.1.1
|
2021-10-13 06:25:12 -05:00
|
|
|
"ts-loader", // we should remove ts-loader and use babel-loader instead
|
2022-01-13 04:08:38 -06:00
|
|
|
"typescript", // >4.5.x doesn't seem to work on windows with pnp currently. probably similar to https://github.com/yarnpkg/berry/issues/3722
|
2021-10-13 06:25:12 -05:00
|
|
|
"ora" // we should bump this once we move to esm modules
|
|
|
|
],
|
2021-11-11 07:52:33 -06:00
|
|
|
"ignorePaths": ["packages/grafana-toolkit/package.json", "emails/**", "plugins-bundled/**", "**/mocks/**"],
|
2021-10-13 06:25:12 -05:00
|
|
|
"labels": ["area/frontend", "dependencies"],
|
2021-11-26 09:59:01 -06:00
|
|
|
"packageRules": [
|
|
|
|
{
|
|
|
|
"matchUpdateTypes": ["patch"],
|
2022-01-24 05:44:36 -06:00
|
|
|
"excludePackagePatterns": ["@storybook"],
|
2022-01-07 06:32:09 -06:00
|
|
|
"extends": ["schedule:monthly"],
|
|
|
|
"groupName": "Monthly patch updates"
|
2022-01-24 05:44:36 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"matchPackagePatterns": ["@storybook"],
|
|
|
|
"extends": ["schedule:monthly"],
|
|
|
|
"groupName": "Storybook updates"
|
2021-11-26 09:59:01 -06:00
|
|
|
}
|
2021-11-26 10:36:23 -06:00
|
|
|
],
|
2021-10-13 06:25:12 -05:00
|
|
|
"pin": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"prConcurrentLimit": 10,
|
|
|
|
"reviewers": ["team:grafana/frontend-ops"],
|
|
|
|
"separateMajorMinor": false,
|
|
|
|
"vulnerabilityAlerts": {
|
|
|
|
"addLabels": ["area/security"]
|
|
|
|
}
|
|
|
|
}
|