Skip to content

Commit

Permalink
qual: prevent renovate from touching peerDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lourot committed Dec 24, 2023
1 parent f3842d3 commit c333fc6
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
// Inspired by https://github.com/vitejs/vite/blob/main/.github/renovate.json5
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "schedule:weekly", "group:allNonMajor"],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"assignees": ["@magne4000"],
"ignoreDeps": [
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:base",
"schedule:weekly",
"group:allNonMajor",

// peerDependencies ranges should be left untouched/wide.
":disablePeerDependencies",
],
labels: ["dependencies"],
rangeStrategy: "bump",
assignees: ["@magne4000"],
ignoreDeps: [
// manually bumping
"node",
"@types/node",
"pnpm"
]
"pnpm",
],
}

0 comments on commit c333fc6

Please sign in to comment.