first commit
Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions

89
renovate.json Normal file
View File

@@ -0,0 +1,89 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":separateMajorReleases",
":enableVulnerabilityAlertsWithLabel(security)"
],
"schedule": ["after 2am and before 4am"],
"timezone": "UTC",
"prConcurrentLimit": 3,
"prHourlyLimit": 1,
"packageRules": [
{
"description": "Use pnpm catalog for shared dependencies",
"matchFileNames": ["pnpm-workspace.yaml"],
"matchManagers": ["npm"],
"enabled": true
},
{
"description": "Group all catalog updates together",
"matchFileNames": ["pnpm-workspace.yaml"],
"groupName": "pnpm catalog",
"commitMessageTopic": "pnpm catalog"
},
{
"description": "Dev dependencies",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": false
},
{
"description": "Patch updates",
"matchUpdateTypes": ["patch", "pin", "digest"],
"automerge": false
},
{
"description": "TypeScript types",
"matchPackageNames": ["@types/**"],
"automerge": false
},
{
"description": "Require approval for major updates",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Group ESLint related packages",
"matchPackageNames": ["*eslint*"],
"groupName": "ESLint"
},
{
"description": "Group Vue ecosystem packages",
"matchPackageNames": ["*vue*", "@vue/**", "@vueuse/**"],
"groupName": "Vue ecosystem"
},
{
"description": "Group testing packages",
"matchPackageNames": ["*vitest*", "*playwright*", "@testing-library/**", "*jest*"],
"groupName": "testing packages"
},
{
"description": "Group TypeScript packages",
"matchPackageNames": ["typescript", "*tsx*", "*tsup*"],
"groupName": "TypeScript"
}
],
"lockFileMaintenance": {
"enabled": false
},
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security", "vulnerability"]
},
"osvVulnerabilityAlerts": true,
"labels": ["dependencies"],
"branchPrefix": "renovate/",
"commitMessagePrefix": "chore: ",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"commitMessageAction": "Update",
"ignoreDeps": [],
"ignorePaths": ["**/node_modules/**", "**/dist/**", "**/build/**"],
"enabledManagers": ["npm", "dockerfile", "github-actions"],
"npmrc": "auto-detect",
"updateNotScheduled": false,
"rangeStrategy": "bump"
}