Skip to content

Commit

Permalink
chore: do not try to update peerDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
magne4000 committed Aug 20, 2024
1 parent f3fb9f4 commit 005b292
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
{
// 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'],
extends: [
'config:base',
'schedule:weekly',
'group:allNonMajor',
// peerDependencies ranges should be left untouched/wide.
':disablePeerDependencies'
],
labels: [
'dependencies'
],
rangeStrategy: 'bump',
assignees: ['@magne4000'],
assignees: [
'@magne4000'
],
ignoreDeps: [
// manually bumping
'node',
'@types/node',
'pnpm',
],
postUpdateOptions: ['pnpmDedupe'],
postUpdateOptions: [
'pnpmDedupe'
],
}

0 comments on commit 005b292

Please sign in to comment.