Skip to content

Commit ba154a7

Browse files
committedDec 14, 2024··
ci: fix ignorePaths pattern
Negated glob patterns would have too broad of a match, so they don't fit in ignorePaths. I choose to use a more specific pattern to only ignore the test fixture with older espree version.
1 parent 168f88f commit ba154a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"github>haoqunjiang/renovate-presets:npm.json5"
55
],
66
"ignorePaths": [
7-
"!examples/**",
8-
"!test/fixtures/file-based-routing"
7+
"**/node_modules/**",
8+
"**/test/fixtures/with-older-espree"
99
]
1010
}

0 commit comments

Comments
 (0)
Please sign in to comment.