* Make Renovate run `yarn dedupe` after updating dependencies * Update renovate.json Co-authored-by: Matthieu MOREL <mmorel-35@users.noreply.github.com> Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Matthieu MOREL <mmorel-35@users.noreply.github.com>
28 lines
696 B
JSON
28 lines
696 B
JSON
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"dependencyDashboardApproval": true,
|
|
"labels": ["PR: Dependency ⬆️", "repo automation 🤖" ],
|
|
"postUpdateOptions": ["yarnDedupeHighest"],
|
|
"packageRules": [
|
|
{
|
|
"matchDepTypes": ["dependencies", "devDependencies"],
|
|
"rangeStrategy": "replace",
|
|
"ignoreDeps": ["@babel/core-7.12", "@babel/helper-validator-identifier-baseline"]
|
|
},
|
|
{
|
|
"matchPackagePatterns": ["^eslint"],
|
|
"groupName": "eslint packages"
|
|
},
|
|
{
|
|
"matchPackagePatterns": ["^rollup", "^@rollup"],
|
|
"groupName": "rollup packages"
|
|
},
|
|
{
|
|
"matchPackagePatterns": ["^gulp"],
|
|
"groupName": "gulp packages"
|
|
}
|
|
]
|
|
}
|