Skip to content

Commit

Permalink
renovate: add package groups (#10803)
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas authored Jun 16, 2023
1 parent b9be7a8 commit f26ff2e
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,24 @@
"extends": ["apollo-docs"]
}
],
"ignoreDeps": [
"typedoc",
"react-17",
"react-dom-17",
"@testing-library/react-12"
]
"packageRules": [
{
"groupName": "all @types",
"groupSlug": "all-types",
"matchPackagePatterns": ["@types/*"]
},
{
"groupName": "all devDependencies",
"groupSlug": "all-dev",
"matchPackagePatterns": ["*"],
"matchDepTypes": ["devDependencies"]
},
{
"groupName": "all dependencies - patch updates",
"groupSlug": "all-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch"]
}
],
"ignoreDeps": ["typedoc", "react-17", "react-dom-17", "@testing-library/react-12"]
}

0 comments on commit f26ff2e

Please sign in to comment.