|
1 | 1 | { |
2 | | - "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:recommended", "schedule:weekly", "group:allNonMajor"], |
4 | | - "labels": ["dependencies"], |
5 | | - "ignorePaths": ["**/__tests__/**"], |
6 | | - "rangeStrategy": "bump", |
7 | | - "packageRules": [ |
| 2 | + $schema: 'https://docs.renovatebot.com/renovate-schema.json', |
| 3 | + extends: ['config:recommended', 'schedule:weekly', 'group:allNonMajor'], |
| 4 | + labels: ['dependencies'], |
| 5 | + ignorePaths: ['**/__tests__/**'], |
| 6 | + rangeStrategy: 'bump', |
| 7 | + packageRules: [ |
8 | 8 | { |
9 | | - "matchDepTypes": ["peerDependencies"], |
10 | | - "enabled": false, |
| 9 | + matchDepTypes: ['peerDependencies'], |
| 10 | + enabled: false, |
11 | 11 | }, |
12 | 12 | { |
13 | | - "matchFileNames": ["**/react-18/**", "**/compiler-react-18/**"], |
14 | | - "ignoreDeps": ["react", "react-dom", "@types/react", "@types/react-dom"], |
| 13 | + matchFileNames: ['**/react-18/**', '**/compiler-react-18/**'], |
| 14 | + ignoreDeps: ['react', 'react-dom', '@types/react', '@types/react-dom'], |
15 | 15 | }, |
16 | 16 | { |
17 | | - "extends": ["monorepo:swc"], |
18 | | - "groupName": "swc monorepo", |
19 | | - "separateMajorMinor": false, |
| 17 | + extends: ['monorepo:swc'], |
| 18 | + groupName: 'swc monorepo', |
| 19 | + separateMajorMinor: false, |
20 | 20 | }, |
21 | 21 | // renovate doesn't properly handle x.x.x-beta-hash-yyyymm version schema |
22 | 22 | { |
23 | | - "matchPackageNames": [ |
24 | | - "react-compiler-runtime", |
25 | | - "babel-plugin-react-compiler", |
| 23 | + matchPackageNames: [ |
| 24 | + 'react-compiler-runtime', |
| 25 | + 'babel-plugin-react-compiler', |
26 | 26 | ], |
27 | | - "followTag": "latest", |
| 27 | + followTag: 'latest', |
28 | 28 | }, |
29 | 29 | { |
30 | | - "matchDepTypes": ["action"], |
31 | | - "pinDigests": true, |
32 | | - "matchPackageNames": ["!actions/{/,}**", "!github/{/,}**"], |
| 30 | + matchDepTypes: ['action'], |
| 31 | + pinDigests: true, |
| 32 | + matchPackageNames: ['!actions/{/,}**', '!github/{/,}**'], |
33 | 33 | }, |
34 | 34 | { |
35 | | - "groupName": "react-related dependencies", |
36 | | - "matchPackageNames": [ |
37 | | - "react", |
38 | | - "react-dom", |
39 | | - "@types/react", |
40 | | - "@types/react-dom", |
41 | | - "react-refresh", |
42 | | - "react-server-dom-webpack", |
43 | | - "use-sync-external-store", |
| 35 | + groupName: 'react-related dependencies', |
| 36 | + matchPackageNames: [ |
| 37 | + 'react', |
| 38 | + 'react-dom', |
| 39 | + '@types/react', |
| 40 | + '@types/react-dom', |
| 41 | + 'react-refresh', |
| 42 | + 'react-server-dom-webpack', |
| 43 | + 'use-sync-external-store', |
44 | 44 | ], |
45 | 45 | }, |
46 | 46 | ], |
47 | | - "ignoreDeps": [ |
| 47 | + ignoreDeps: [ |
48 | 48 | // manually bumping |
49 | | - "node", |
| 49 | + 'node', |
50 | 50 |
|
51 | 51 | // breaking changes |
52 | | - "source-map", // `source-map:v0.7.0+` needs more investigation |
53 | | - "kill-port", // `kill-port:^2.0.0 has perf issues (#8392) |
| 52 | + 'source-map', // `source-map:v0.7.0+` needs more investigation |
| 53 | + 'kill-port', // `kill-port:^2.0.0 has perf issues (#8392) |
54 | 54 |
|
55 | | - "prettier", // waiting for stable choice on ternaries |
| 55 | + 'prettier', // waiting for stable choice on ternaries |
56 | 56 | ], |
57 | 57 | } |
0 commit comments