Updated test-class matching rule of renovate (#293)

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.
This commit is contained in:
Erik Michelson 2020-06-27 11:41:37 +02:00 committed by GitHub
parent fe55ef7e13
commit 4be74f885a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,8 +29,10 @@
]
},
{
"extends": "packages:jsTest",
"groupName": "JS test packages"
"groupName": "JS test packages",
"packagePatterns": [
"^@testing-library/"
]
}
],
"prHourlyLimit": 0,