mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
edd54f59be
* Update dependency html-loader to v3 * Chore(dependencies): Ignore html-loader in grafana-toolkit until it moves to webpack 5 Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"enabledManagers": ["npm"],
|
|
"ignoreDeps": [
|
|
"@types/systemjs",
|
|
"@types/d3-force", // we should bump this once we move to esm modules
|
|
"@types/d3-interpolate", // we should bump this once we move to esm modules
|
|
"@types/d3-scale-chromatic", // we should bump this once we move to esm modules
|
|
"d3",
|
|
"d3-force", // we should bump this once we move to esm modules
|
|
"d3-interpolate", // we should bump this once we move to esm modules
|
|
"d3-scale-chromatic", // we should bump this once we move to esm modules
|
|
"eslint", // wait until `eslint-plugin-react-hooks>4.2.0` is released
|
|
"globby", // we should bump this once we move to esm modules
|
|
"slate",
|
|
"slate-plain-serializer",
|
|
"systemjs",
|
|
"ts-loader", // we should remove ts-loader and use babel-loader instead
|
|
"ora" // we should bump this once we move to esm modules
|
|
],
|
|
"ignorePaths": ["emails/**", "plugins-bundled/**", "**/mocks/**"],
|
|
"labels": ["area/frontend", "dependencies"],
|
|
"minor": {
|
|
"enabled": false
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchPaths": ["grafana-toolkit/package.json"],
|
|
"ignoreDeps": [
|
|
"copy-webpack-plugin", // need to wait for Grafana 9 to upgrade toolkit to webpack 5
|
|
"css-loader", // need to wait for Grafana 9 to upgrade toolkit to webpack 5
|
|
"html-loader", // need to wait for Grafana 9 to upgrade toolkit to webpack 5
|
|
]
|
|
}
|
|
],
|
|
"patch": {
|
|
"enabled": false
|
|
},
|
|
"pin": {
|
|
"enabled": false
|
|
},
|
|
"prConcurrentLimit": 10,
|
|
"reviewers": ["team:grafana/frontend-ops"],
|
|
"separateMajorMinor": false,
|
|
"vulnerabilityAlerts": {
|
|
"addLabels": ["area/security"]
|
|
}
|
|
}
|