Skip to content

Commit a02b04e

Browse files
committed
chore(config): enhance Renovate configuration for type package management
- Updated package rules in the Renovate configuration to better match type stubs and related packages, improving dependency management for type-related updates.
1 parent 1cfc42c commit a02b04e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/renovate.json5

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,13 @@
153153
],
154154
},
155155
{
156+
// Type stubs and type-related packages
156157
matchPackageNames: [
157-
'/^types-/',
158-
'annotated-types',
159-
'asyncpg-stubs',
158+
'/^types?-/', // types-, type-
159+
'/^typing-/', // typing-*
160+
'/^@types/', // @types/*
161+
'/-types$/', // *-types
162+
'/-stubs?$/', // *-stub, *-stubs
160163
],
161164
groupName: 'types',
162165
automerge: true,

0 commit comments

Comments
 (0)