mirror of
https://github.com/yanhao98/renovate-example.git
synced 2025-07-13 04:10:49 +08:00
重构 primevue 包组配置,简化匹配规则并调整分组名称
This commit is contained in:
@ -25,7 +25,8 @@
|
|||||||
// It's easier to deal with all the Vite plugins at once when Vite ships a new major version
|
// 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"] },
|
{ "groupName": "vite packages", "extends": ["packages:vite"] },
|
||||||
|
|
||||||
{ "groupName": "primevue packages", "matchPackageNames": [ "primelocale", "/^primevue/", "/^@prime/" ] },
|
// { "groupName": "primevue packages", "matchPackageNames": [ "primelocale", "/^primevue/", "/^@prime/" ] },
|
||||||
|
{ "groupName": "primevue pkgs", "matchPackageNames": ["primelocale"], "separateMajorMinor": false },
|
||||||
|
|
||||||
// TypeScript doesn't follow semver, so we need to separate minor and patch updates
|
// TypeScript doesn't follow semver, so we need to separate minor and patch updates
|
||||||
// <https://www.semver-ts.org/1-background.html>
|
// <https://www.semver-ts.org/1-background.html>
|
||||||
@ -33,14 +34,14 @@
|
|||||||
|
|
||||||
// Prettier, when used as a devDependency to format code, should be pinned.
|
// Prettier, when used as a devDependency to format code, should be pinned.
|
||||||
// SemVer only applies to its API, not its formatting behavior.
|
// SemVer only applies to its API, not its formatting behavior.
|
||||||
{ "matchDepNames": ["prettier"], "matchDepTypes": ["devDependencies"], "groupName": "prettier", "rangeStrategy": "pin" },
|
{ "groupName": "prettier", "matchDepNames": ["prettier"], "matchDepTypes": ["devDependencies"], "rangeStrategy": "pin" },
|
||||||
|
|
||||||
// Minor releases for v0.x packages may contain breaking changes
|
// Minor releases for v0.x packages may contain breaking changes
|
||||||
{ "groupName": "v0.x", "matchCurrentVersion": "/^0./", "separateMinorPatch": true },
|
{ "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", "matchPackageNames": [ "/^@types//" ] },
|
||||||
{ "minimumReleaseAge": "14 days", "matchPackageNames": [ "*" ] }
|
{ "minimumReleaseAge": "14 days", "matchPackageNames": [ "*" ] }
|
||||||
|
|
||||||
// major 更新需要人工确认
|
// major 更新需要人工确认
|
||||||
|
Reference in New Issue
Block a user