mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
51 lines
1.0 KiB
Plaintext
51 lines
1.0 KiB
Plaintext
{
|
|
"extends": ["config:base", "schedule:weekly"],
|
|
"labels": ["dependencies"],
|
|
"pin": false,
|
|
"rangeStrategy": "bump",
|
|
"node": false,
|
|
"packageRules": [
|
|
{
|
|
"depTypeList": ["peerDependencies"],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"packageNames": ["node"],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"matchPaths": [
|
|
"examples/**"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": "all non-major examples dependencies",
|
|
"groupSlug": "all-minor-patch-examples"
|
|
},
|
|
{
|
|
"excludePackagePatterns": [
|
|
"@vitest/test-"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": "all non-major dependencies",
|
|
"groupSlug": "all-minor-patch"
|
|
}
|
|
],
|
|
"ignoreDeps": [
|
|
// wait for ecosystem to upgrade to React v18
|
|
"@testing-library/react",
|
|
"@testing-library/user-event",
|
|
// TODO: migrate
|
|
"pretty-format",
|
|
// TODO: breaking changes
|
|
"pathe",
|
|
// TODO: vite-plugin-pwa issue
|
|
"esno"
|
|
]
|
|
}
|