Files
freeCodeCamp/renovate.json
T
2026-05-08 20:08:32 +05:30

66 lines
1.6 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>freecodecamp/renovate-config"],
"lockFileMaintenance": {
"enabled": true,
"extends": ["schedule:weekly"],
"automerge": true
},
"postUpdateOptions": ["pnpmDedupe"],
"packageRules": [
{
"matchCurrentVersion": "/^0\\./",
"matchUpdateTypes": ["minor", "patch"],
"dependencyDashboardApproval": true
},
{
"groupName": "weekly-cadence",
"matchPackageNames": ["typebox"],
"extends": ["schedule:weekly"]
},
{
"groupName": "types",
"matchPackageNames": ["@types/**"]
},
{
"groupName": "eslint",
"matchPackageNames": [
"eslint",
"eslint-**",
"@eslint/**",
"@typescript-eslint/**",
"typescript-eslint"
]
},
{
"groupName": "playwright",
"matchPackageNames": ["@playwright/**", "playwright", "playwright-**"]
},
{
"groupName": "gatsby",
"matchPackageNames": ["gatsby", "gatsby-**"]
},
{
"groupName": "vitest",
"matchPackageNames": ["vitest", "@vitest/**"]
},
{
"groupName": "transitive-pins",
"matchFileNames": ["pnpm-workspace.yaml"],
"matchDepTypes": ["pnpm-workspace.overrides"]
},
{
"groupName": "testing-library",
"matchPackageNames": ["@testing-library/**"]
},
{
"groupName": "fastify",
"matchPackageNames": ["fastify", "@fastify/**"]
},
{
"matchPackageNames": ["node", "pnpm", "typescript"],
"dependencyDashboardApproval": true
}
]
}