0
0
mirror of https://github.com/yanhao98/renovate-example.git synced 2025-07-13 12:30:49 +08:00

更新 default.json5

This commit is contained in:
严浩
2024-11-27 22:14:52 +08:00
committed by GitHub
parent 8c5d80212e
commit 9d13710fc6

View File

@ -7,8 +7,12 @@
"group:allNonMajor", "group:allNonMajor",
":semanticCommitTypeAll(chore)", ":semanticCommitTypeAll(chore)",
"customManagers:dockerfileVersions", "customManagers:dockerfileVersions",
"customManagers:githubActionsVersions" "customManagers:githubActionsVersions",
"helpers:disableTypesNodeMajor",
":widenPeerDependencies",
":semanticCommitTypeAll(chore)"
], ],
"prHourlyLimit": 5,
"dependencyDashboard": false, "dependencyDashboard": false,
"forkProcessing": "enabled", "forkProcessing": "enabled",
"rangeStrategy": "bump", "rangeStrategy": "bump",
@ -16,14 +20,22 @@
"dependencies" "dependencies"
], ],
"packageRules": [ "packageRules": [
// It's easier to deal with all the Vite plugins at once when Vite ships a new major version
{ "groupName": "vite packages", "extends": ["packages:vite"] },
// TypeScript doesn't follow semver, so we need to separate minor and patch updates
// <https://www.semver-ts.org/1-background.html>
{ "groupName": "typescript", "matchDepNames": ["typescript"], "separateMinorPatch": true, "separateMultipleMinor": true },
// Minor releases for v0.x packages may contain breaking changes
{ "groupName": "v0.x", "matchCurrentVersion": "/^0./", "separateMinorPatch": true },
{ "groupName": "github-actions", "matchManagers": [ "github-actions" ] }, { "groupName": "github-actions", "matchManagers": [ "github-actions" ] },
{ "groupName": "Dockerfile", "matchManagers": [ "dockerfile" ] }, { "groupName": "Dockerfile", "matchManagers": [ "dockerfile" ] },
{ "groupName": "types", "groupSlug": "types", "matchPackageNames": [ "/^@types//" ] }, { "groupName": "types", "groupSlug": "types", "matchPackageNames": [ "/^@types//" ] },
{ "groupName": "typescript", "matchDepNames": [ "typescript" ], "rangeStrategy": "replace" }, { "minimumReleaseAge": "14 days", "matchPackageNames": [ "*" ] },
// manually update peer dependencies // manually update peer dependencies
{ "matchDepTypes": [ "peerDependencies" ], "enabled": false }, { "matchDepTypes": [ "peerDependencies" ], "enabled": false }
{ "minimumReleaseAge": "14 days", "matchPackageNames": [ "*" ] }
], ],
"customManagers": [ "customManagers": [
// https://semantic-release.gitbook.io/semantic-release/usage/installation#notes // https://semantic-release.gitbook.io/semantic-release/usage/installation#notes