|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": ["config:recommended"], |
| 4 | + "separateMajorMinor": false, |
| 5 | + "packageRules": [ |
| 6 | + { |
| 7 | + "description": "Group Cloudflare dependencies together as they are often released in tandem.", |
| 8 | + "matchPackageNames": ["/^@cloudflare\\//", "wrangler"], |
| 9 | + "groupName": "cloudflare" |
| 10 | + }, |
| 11 | + { |
| 12 | + "description": "Group React-related packages together.", |
| 13 | + "matchPackageNames": ["/^react/", "/^@types\\/react/"], |
| 14 | + "groupName": "react" |
| 15 | + }, |
| 16 | + { |
| 17 | + "description": "Group infrastructure dependencies (Actions, Docker, Node.js, pnpm).", |
| 18 | + "matchManagers": ["github-actions", "dockerfile", "nodenv"], |
| 19 | + "groupName": "infrastructure-dependencies", |
| 20 | + "schedule": ["on saturday"] |
| 21 | + }, |
| 22 | + { |
| 23 | + "description": "Group pnpm version from root package.json with other infra deps", |
| 24 | + "matchFileNames": ["package.json"], |
| 25 | + "matchPackageNames": ["pnpm"], |
| 26 | + "groupName": "infrastructure-dependencies", |
| 27 | + "schedule": ["on saturday"] |
| 28 | + }, |
| 29 | + { |
| 30 | + "description": "Group all SDK internal dependencies into a single weekly PR.", |
| 31 | + "matchFileNames": ["sdk/package.json"], |
| 32 | + "groupName": "sdk-internal-dependencies", |
| 33 | + "schedule": ["on saturday"] |
| 34 | + }, |
| 35 | + { |
| 36 | + "description": "Group all starter application dependencies into a single weekly PR.", |
| 37 | + "matchFileNames": ["starters/**/package.json"], |
| 38 | + "excludePackageNames": ["@cloudflare/vite-plugin", "wrangler", "vite"], |
| 39 | + "groupName": "starter-app-dependencies", |
| 40 | + "schedule": ["on saturday"] |
| 41 | + }, |
| 42 | + { |
| 43 | + "description": "Update peer dependencies in starter projects as soon as they are available.", |
| 44 | + "matchFileNames": ["starters/**/package.json"], |
| 45 | + "matchPackageNames": ["@cloudflare/vite-plugin", "wrangler", "vite"], |
| 46 | + "groupName": "starter-peer-dependencies", |
| 47 | + "schedule": ["every weekend"], |
| 48 | + "prPriority": 1 |
| 49 | + }, |
| 50 | + { |
| 51 | + "description": "Group dependencies for the docs site.", |
| 52 | + "matchFileNames": ["docs/package.json"], |
| 53 | + "groupName": "docs-dependencies", |
| 54 | + "schedule": ["on saturday"] |
| 55 | + }, |
| 56 | + { |
| 57 | + "description": "Group dependencies from the root package.json.", |
| 58 | + "matchFileNames": ["package.json"], |
| 59 | + "excludePackageNames": ["pnpm"], |
| 60 | + "groupName": "root-dependencies", |
| 61 | + "schedule": ["on saturday"] |
| 62 | + } |
| 63 | + ], |
| 64 | + "prHeader": " chore(deps): {{{prTitle}}}", |
| 65 | + "prBodyNotes": "This PR updates the following dependencies:\n\n{{{table}}}", |
| 66 | + "automerge": false, |
| 67 | + "major": { "automerge": false }, |
| 68 | + "minor": { "automerge": false }, |
| 69 | + "patch": { "automerge": false } |
| 70 | +} |
0 commit comments