Skip to content

Commit

Permalink
fix(src/default.json5): use ignorePaths instead of fileMatch to ignor…
Browse files Browse the repository at this point in the history
…e bun.lockb (#88)
  • Loading branch information
risu729 authored Jan 9, 2025
1 parent 6f8bb47 commit 4344aea
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
12 changes: 10 additions & 2 deletions default.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 15 additions & 3 deletions src/default.json5
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,21 @@
"customManagers:biomeVersions",
],
bun: {
// ignore bun.lockb
// an empty bun.lockb is required to Bun detected by Cloudflare Workers/Pages Builds
fileMatch: ["(^|/)bun\\.lock$"],
ignorePaths: [
// ignorePaths is not merged
// ref: https://docs.renovatebot.com/presets-default/#ignoremodulesandtests
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/examples/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**",
// ignore bun.lockb
// an empty bun.lockb is required to Bun detected by Cloudflare Workers/Pages Builds
"**/bun.lockb",
],
},
labels: [
"dependencies",
Expand Down

0 comments on commit 4344aea

Please sign in to comment.