Skip to content

Commit

Permalink
chore(renovate): rename to .jsonc to use comments (#28)
Browse files Browse the repository at this point in the history
* chore(renovate): rename to `.jsonc` to use comments

* chore: fmt
  • Loading branch information
colinaaa authored Mar 4, 2025
1 parent c617453 commit b01908a
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/renovate.json → .github/renovate.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,73 +4,73 @@
"config:recommended",
":automergeStableNonMajor",
":automergeTypes",
":maintainLockFilesWeekly"
":maintainLockFilesWeekly",
],

"enabledManagers": [
"npm",
"nvm",
"github-actions"
"github-actions",
],

"labels": ["renovate"],

"packageRules": [
{
"matchPackageNames": [
"*"
"*",
],
"rangeStrategy": "bump"
"rangeStrategy": "bump",
},
{
"groupName": "Rspack",
"groupSlug": "Rspack",
"addLabels": ["Rspack"],
"matchDepTypes": [
"devDependencies",
"dependencies"
"dependencies",
],
"matchPackageNames": [
"/@rspack/*/"
"/@rspack/*/",
],
"rangeStrategy": "pin",
"automerge": false
"automerge": false,
},
{
"groupName": "Rsbuild",
"groupSlug": "Rsbuild",
"addLabels": ["Rsbuild"],
"matchDepTypes": [
"devDependencies",
"dependencies"
"dependencies",
],
"matchPackageNames": [
"/@rsbuild/*/",
"/rsbuild-plugin-*/"
"/rsbuild-plugin-*/",
],
"rangeStrategy": "pin",
"automerge": false
"automerge": false,
},
{
"groupName": "changesets",
"groupSlug": "changesets",
"matchPackageNames": [
"/^@changesets/*/"
]
"/^@changesets/*/",
],
},
{
"matchDepTypes": [
"peerDependencies"
"peerDependencies",
],
"addLabels": ["peerDependencies"],
"rangeStrategy": "widen"
}
"rangeStrategy": "widen",
},
],
"postUpdateOptions": [
"pnpmDedupe"
"pnpmDedupe",
],
"ignoreDeps": [
// align Node.js version minimum requirements
"node"
]
"node",
],
}

0 comments on commit b01908a

Please sign in to comment.