|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["github>freecodecamp/renovate-config"], |
| 3 | + "extends": [ |
| 4 | + "github>freecodecamp/renovate-config" |
| 5 | + ], |
4 | 6 | "packageRules": [ |
5 | 7 | { |
6 | 8 | "groupName": "vitest monorepo", |
7 | | - "matchPackagePatterns": ["^vitest", "^@vitest/"], |
8 | | - "description": "Group all Vitest packages together for coordinated testing framework updates" |
| 9 | + "description": "Group all Vitest packages together for coordinated testing framework updates", |
| 10 | + "matchPackageNames": [ |
| 11 | + "/^vitest/", |
| 12 | + "/^@vitest//" |
| 13 | + ] |
9 | 14 | }, |
10 | 15 | { |
11 | 16 | "groupName": "GraphQL Code Generator", |
12 | | - "matchPackagePatterns": ["^@graphql-codegen/"], |
13 | | - "description": "Group all GraphQL Code Generator packages for coordinated codegen updates" |
| 17 | + "description": "Group all GraphQL Code Generator packages for coordinated codegen updates", |
| 18 | + "matchPackageNames": [ |
| 19 | + "/^@graphql-codegen//" |
| 20 | + ] |
14 | 21 | }, |
15 | 22 | { |
16 | 23 | "groupName": "GraphQL ecosystem", |
17 | | - "matchPackageNames": ["graphql", "graphql-yoga"], |
18 | | - "matchPackagePatterns": ["^@graphql-tools/"], |
| 24 | + "matchPackageNames": [ |
| 25 | + "graphql", |
| 26 | + "graphql-yoga", |
| 27 | + "/^@graphql-tools//" |
| 28 | + ], |
19 | 29 | "description": "Group core GraphQL runtime packages and tools" |
20 | 30 | }, |
21 | 31 | { |
22 | 32 | "groupName": "code quality tools", |
23 | | - "matchPackageNames": ["oxlint", "prettier", "lint-staged"], |
| 33 | + "matchPackageNames": [ |
| 34 | + "oxlint", |
| 35 | + "prettier", |
| 36 | + "lint-staged" |
| 37 | + ], |
24 | 38 | "description": "Group linting and formatting tools for coordinated updates" |
25 | 39 | }, |
26 | 40 | { |
27 | 41 | "groupName": "build tools", |
28 | | - "matchPackageNames": ["turbo", "typescript", "tsx"], |
| 42 | + "matchPackageNames": [ |
| 43 | + "turbo", |
| 44 | + "typescript", |
| 45 | + "tsx" |
| 46 | + ], |
29 | 47 | "description": "Group build and compilation toolchain" |
30 | 48 | }, |
31 | 49 | { |
32 | 50 | "groupName": "type definitions (non-major)", |
33 | | - "matchPackagePatterns": ["^@types/"], |
34 | | - "matchUpdateTypes": ["minor", "patch"], |
35 | | - "description": "Group TypeScript type definition updates (non-breaking)" |
| 51 | + "matchUpdateTypes": [ |
| 52 | + "minor", |
| 53 | + "patch" |
| 54 | + ], |
| 55 | + "description": "Group TypeScript type definition updates (non-breaking)", |
| 56 | + "matchPackageNames": [ |
| 57 | + "/^@types//" |
| 58 | + ] |
36 | 59 | } |
37 | 60 | ] |
38 | 61 | } |
0 commit comments