mirror of
https://github.com/directus/directus.git
synced 2026-01-28 01:48:09 -05:00
26 lines
559 B
JSON
26 lines
559 B
JSON
{
|
|
"extends": ["config:base", ":disableDependencyDashboard", "schedule:weekly"],
|
|
"timezone": "America/New_York",
|
|
"labels": ["Dependencies"],
|
|
"semanticCommits": "disabled",
|
|
"separateMajorMinor": false,
|
|
"force": {
|
|
"constraints": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=7.0.0"
|
|
}
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchDatasources": ["npm"],
|
|
"matchUpdateTypes": ["major"],
|
|
"groupName": "NPM dependencies (major)"
|
|
},
|
|
{
|
|
"matchDatasources": ["npm"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "NPM dependencies (non-major)"
|
|
}
|
|
]
|
|
}
|