|
1 | 1 | { |
2 | | - $schema: 'https://docs.renovatebot.com/renovate-schema.json', |
3 | | - extends: ['config:recommended', 'schedule:weekly'], |
4 | | - ignorePaths: ['**/node_modules/**'], |
| 2 | + $schema: "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + extends: ["config:recommended", "schedule:weekly"], |
| 4 | + ignorePaths: ["**/node_modules/**"], |
5 | 5 | packageRules: [ |
6 | | - // Use chore as semantic commit type for commit messages |
7 | 6 | { |
8 | | - matchPackageNames: ['**'], |
9 | | - semanticCommitType: 'chore', |
10 | | - // always bump package.json |
11 | | - rangeStrategy: 'bump', |
| 7 | + matchPackageNames: ["**"], |
| 8 | + semanticCommitType: "chore", |
| 9 | + rangeStrategy: "bump", |
12 | 10 | }, |
13 | 11 | { |
14 | | - groupName: 'babel', |
15 | | - matchPackageNames: ['**babel**'], |
16 | | - groupSlug: 'babel', |
| 12 | + groupName: "babel", |
| 13 | + matchPackageNames: ["**babel**"], |
| 14 | + groupSlug: "babel", |
17 | 15 | }, |
18 | 16 | { |
19 | | - groupName: 'rsbuild', |
20 | | - matchPackageNames: ['@rsbuild/**'], |
21 | | - groupSlug: 'rsbuild', |
22 | | - extends: ['schedule:daily'], |
| 17 | + groupName: "rsbuild", |
| 18 | + matchPackageNames: ["@rsbuild/**"], |
| 19 | + groupSlug: "rsbuild", |
| 20 | + extends: ["schedule:daily"], |
23 | 21 | }, |
24 | 22 | { |
25 | | - groupName: 'rslib', |
26 | | - matchPackageNames: ['rslib'], |
27 | | - groupSlug: 'rslib', |
28 | | - extends: ['schedule:daily'], |
| 23 | + groupName: "rslib", |
| 24 | + matchPackageNames: ["rslib"], |
| 25 | + groupSlug: "rslib", |
| 26 | + extends: ["schedule:daily"], |
29 | 27 | }, |
30 | 28 | { |
31 | | - groupName: 'rspress', |
32 | | - matchPackageNames: ['@rspress/**'], |
33 | | - groupSlug: 'rspress', |
34 | | - extends: ['schedule:daily'], |
| 29 | + groupName: "rspress", |
| 30 | + matchPackageNames: ["@rspress/**"], |
| 31 | + groupSlug: "rspress", |
| 32 | + extends: ["schedule:daily"], |
35 | 33 | }, |
36 | 34 | { |
37 | | - groupName: 'modern-js', |
38 | | - matchPackageNames: ['@modern-js/**'], |
39 | | - groupSlug: 'modern-js', |
| 35 | + groupName: "modern-js", |
| 36 | + matchPackageNames: ["@modern-js/**"], |
| 37 | + groupSlug: "modern-js", |
40 | 38 | }, |
41 | 39 | { |
42 | | - groupName: 'types', |
43 | | - matchPackageNames: ['@types/**'], |
44 | | - groupSlug: 'types', |
| 40 | + groupName: "types", |
| 41 | + matchPackageNames: ["@types/**"], |
| 42 | + groupSlug: "types", |
45 | 43 | }, |
46 | 44 | { |
47 | | - groupName: 'all patch dependencies', |
48 | | - groupSlug: 'all-patch', |
49 | | - matchPackageNames: ['**'], |
50 | | - matchUpdateTypes: ['patch'], |
| 45 | + groupName: "all patch dependencies", |
| 46 | + groupSlug: "all-patch", |
| 47 | + matchPackageNames: ["**"], |
| 48 | + matchUpdateTypes: ["patch"], |
51 | 49 | }, |
52 | | - // manually update peer dependencies |
53 | 50 | { |
54 | | - depTypeList: ['peerDependencies'], |
| 51 | + matchDepTypes: ["peerDependencies"], |
55 | 52 | enabled: false, |
56 | 53 | }, |
57 | 54 | ], |
58 | 55 | ignoreDeps: [ |
59 | | - // manually update some packages |
60 | | - 'pnpm', |
61 | | - '@rspack/core', |
62 | | - '@rspack/core-canary', |
63 | | - // align Node.js version minimum requirements |
64 | | - '@types/node', |
65 | | - 'node', |
66 | | - // umd tests need to lock this version |
67 | | - 'react-aliased', |
| 56 | + "pnpm", |
| 57 | + "@rspack/core", |
| 58 | + "@rspack/core-canary", |
| 59 | + "@types/node", |
| 60 | + "node", |
| 61 | + "react-aliased", |
68 | 62 | ], |
69 | | - postUpdateOptions: ['pnpmDedupe'], |
| 63 | + postUpdateOptions: ["pnpmDedupe"], |
70 | 64 | } |
0 commit comments