mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
4be74f885a
As seen in multiple PRs that renovate raised today, the @testing-library/ packages are not bundled in the 'packages:jsTest' pre-defined group. As they aren't relevant to be separated, this commit changes the config of renovate to treat them as one big PR in the future.
42 lines
752 B
JSON
42 lines
752 B
JSON
{
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"labels": [
|
|
"dependencies"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"extends": "packages:linters",
|
|
"groupName": "linters"
|
|
},
|
|
{
|
|
"extends": "monorepo:typescript-eslint",
|
|
"groupName": "typescript-eslint monorepo"
|
|
},
|
|
{
|
|
"extends": "monorepo:react",
|
|
"groupName": "react monorepo"
|
|
},
|
|
{
|
|
"extends": "monorepo:reactrouter",
|
|
"groupName": "reactrouter monorepo"
|
|
},
|
|
{
|
|
"groupName": "definitelyTyped",
|
|
"packagePatterns": [
|
|
"^@types/"
|
|
]
|
|
},
|
|
{
|
|
"groupName": "JS test packages",
|
|
"packagePatterns": [
|
|
"^@testing-library/"
|
|
]
|
|
}
|
|
],
|
|
"prHourlyLimit": 0,
|
|
"schedule": [
|
|
"on Saturday"
|
|
]
|
|
}
|