|
1 | 1 | { |
2 | 2 | "extends": [ |
3 | | - "config:base" |
| 3 | + ":dependencyDashboard", |
| 4 | + "group:babelMonorepo", |
| 5 | + "group:commitlintMonorepo", |
| 6 | + "group:docusaurusMonorepo", |
| 7 | + ":prHourlyLimit2", |
| 8 | + "workarounds:all" |
| 9 | + ], |
| 10 | + "timezone": "UTC", |
| 11 | + "rangeStrategy": "bump", |
| 12 | + "separateMajorMinor": true, |
| 13 | + "prConcurrentLimit": 2, |
| 14 | + "semanticCommits": "enabled", |
| 15 | + "commitMessagePrefix": "build(deps):", |
| 16 | + "ignorePaths": ["examples/react-app"], |
| 17 | + "ignoreDeps": [ |
| 18 | + "@mdx-js/react", |
| 19 | + "@types/react", |
| 20 | + "execa", |
| 21 | + "chalk", |
| 22 | + "husky" |
| 23 | + ], |
| 24 | + "packageRules": [ |
| 25 | + { |
| 26 | + "matchPaths": ["examples/**"], |
| 27 | + "matchUpdateTypes": ["major"], |
| 28 | + "enabled": false |
| 29 | + }, |
| 30 | + { |
| 31 | + "matchPaths": ["examples/react-app"], |
| 32 | + "enabled": false |
| 33 | + }, |
| 34 | + { |
| 35 | + "matchPaths": ["package.json"], |
| 36 | + "matchPackagePatterns": ["jest"], |
| 37 | + "excludePackageNames": ["eslint-plugin-jest"], |
| 38 | + "matchUpdateTypes": ["patch", "minor"], |
| 39 | + "groupName": "Jest packages" |
| 40 | + }, |
| 41 | + { |
| 42 | + "extends": ["packages:eslint"], |
| 43 | + "groupName": "ESLint packages" |
| 44 | + }, |
| 45 | + { |
| 46 | + "matchPackagePrefixes": ["esbuild"], |
| 47 | + "groupName": "Esbuild packages" |
| 48 | + }, |
| 49 | + { |
| 50 | + "matchFiles": ["package.json"], |
| 51 | + "matchDepTypes": ["dependencies", "optionalDependencies"], |
| 52 | + "rangeStrategy": "in-range-only" |
| 53 | + }, |
| 54 | + { |
| 55 | + "matchPaths": ["e2e/**"], |
| 56 | + "matchPackageNames": [ |
| 57 | + "react", |
| 58 | + "react-intl" |
| 59 | + ], |
| 60 | + "groupName": "React e2e packages", |
| 61 | + "enabled": true |
| 62 | + }, |
| 63 | + { |
| 64 | + "matchDepTypes": ["peerDependencies"], |
| 65 | + "enabled": false |
| 66 | + } |
4 | 67 | ] |
5 | 68 | } |
0 commit comments