github-actions[bot] 52d71d28bd
Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
2022-06-29 15:41:55 -04:00

66 lines
1.5 KiB
JSON

{
"extends": [
"group:babelMonorepo",
"group:commitlintMonorepo",
"group:docusaurusMonorepo",
":prHourlyLimit2",
"workarounds:all",
"helpers:pinGitHubActionDigests"
],
"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/**"],
"matchPackagePatterns": ["react"],
"groupName": "React e2e packages",
"enabled": true
},
{
"matchDepTypes": ["peerDependencies"],
"enabled": false
}
]
}