Skip to content

Commit

Permalink
fix: remove @types/jest from peer deps (#3592)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl committed Jun 2, 2022
1 parent bfebf0c commit b66b656
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 5 deletions.
4 changes: 0 additions & 4 deletions package.json
Expand Up @@ -62,7 +62,6 @@
},
"peerDependencies": {
"@babel/core": ">=7.0.0-beta.0 <8",
"@types/jest": "^27.0.0",
"babel-jest": "^28.0.0",
"jest": "^28.0.0",
"typescript": ">=4.3"
Expand All @@ -71,9 +70,6 @@
"@babel/core": {
"optional": true
},
"@types/jest": {
"optional": true
},
"babel-jest": {
"optional": true
},
Expand Down
65 changes: 64 additions & 1 deletion renovate.json
@@ -1,5 +1,68 @@
{
"extends": [
"config:base"
":dependencyDashboard",
"group:babelMonorepo",
"group:commitlintMonorepo",
"group:docusaurusMonorepo",
":prHourlyLimit2",
"workarounds:all"
],
"timezone": "UTC",
"rangeStrategy": "bump",
"separateMajorMinor": true,
"prConcurrentLimit": 2,
"semanticCommits": "enabled",
"commitMessagePrefix": "build(deps):",
"ignorePaths": ["examples/react-app"],
"ignoreDeps": [
"@mdx-js/react",
"@types/react",
"execa",
"chalk",
"husky"
],
"packageRules": [
{
"matchPaths": ["examples/**"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"matchPaths": ["examples/react-app"],
"enabled": false
},
{
"matchPaths": ["package.json"],
"matchPackagePatterns": ["jest"],
"excludePackageNames": ["eslint-plugin-jest"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "Jest packages"
},
{
"extends": ["packages:eslint"],
"groupName": "ESLint packages"
},
{
"matchPackagePrefixes": ["esbuild"],
"groupName": "Esbuild packages"
},
{
"matchFiles": ["package.json"],
"matchDepTypes": ["dependencies", "optionalDependencies"],
"rangeStrategy": "in-range-only"
},
{
"matchPaths": ["e2e/**"],
"matchPackageNames": [
"react",
"react-intl"
],
"groupName": "React e2e packages",
"enabled": true
},
{
"matchDepTypes": ["peerDependencies"],
"enabled": false
}
]
}

0 comments on commit b66b656

Please sign in to comment.