-
-
Notifications
You must be signed in to change notification settings - Fork 428
Expand file tree
/
Copy pathrenovate.json
More file actions
31 lines (31 loc) · 1.02 KB
/
renovate.json
File metadata and controls
31 lines (31 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>mui/mui-public//renovate/default"],
"schedule": "* 2-6 * * 5",
"lockFileMaintenance": {
"schedule": "* 0-4 4 * *"
},
"packageRules": [
{
"groupName": "Floating UI",
"description": "Update Floating UI as soon as the new version is released",
"matchPackageNames": ["@floating-ui/*"],
"schedule": null
},
{
"groupName": "Tailwind CSS",
"matchPackageNames": ["tailwindcss", "@tailwindcss/*", "prettier-plugin-tailwindcss"]
},
{
"groupName": "MUI public packages",
"matchPackageNames": ["@mui/*", "!@mui/internal-*", "!@mui/docs"],
"allowedVersions": "!/-dev/"
},
{
"groupName": "jsdom",
"description": "v28 is causing further performance issues and timeouts in our tests, so we will stay on v27 until the issues are resolved. https://github.com/mui/base-ui/pull/4372",
"matchPackageNames": ["jsdom"],
"allowedVersions": "<28"
}
]
}