-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from mrdavidburns/add-renovate-package-updater
Initial commit for adding Renovate autoupdater.
- Loading branch information
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "Discord.js ecosystem", | ||
"matchPackagePatterns": [ | ||
"^@discordjs/", | ||
"^discord.js" | ||
] | ||
}, | ||
{ | ||
"groupName": "TypeScript and related", | ||
"matchPackagePatterns": [ | ||
"^@typescript-eslint/", | ||
"^typescript$", | ||
"^ts-", | ||
"^tslib$" | ||
] | ||
}, | ||
{ | ||
"groupName": "Testing frameworks", | ||
"matchPackagePatterns": [ | ||
"^jest$", | ||
"^@types/jest$" | ||
] | ||
}, | ||
{ | ||
"groupName": "Rollup and plugins", | ||
"matchPackagePatterns": [ | ||
"^@rollup/", | ||
"^rollup" | ||
] | ||
}, | ||
{ | ||
"groupName": "ESLint and formatting", | ||
"matchPackagePatterns": [ | ||
"^eslint", | ||
"^prettier" | ||
] | ||
}, | ||
{ | ||
"groupName": "SQLite related", | ||
"matchPackagePatterns": [ | ||
"sqlite", | ||
"^@types/better-sqlite3", | ||
"^@types/sql.js" | ||
] | ||
}, | ||
{ | ||
"groupName": "AI/ML packages", | ||
"matchPackagePatterns": [ | ||
"^@anthropic-ai/", | ||
"^@huggingface/", | ||
"^openai$", | ||
"^tiktoken$" | ||
] | ||
}, | ||
{ | ||
"groupName": "Audio processing", | ||
"matchPackagePatterns": [ | ||
"^wav", | ||
"^@discordjs/opus", | ||
"^fluent-ffmpeg", | ||
"^ffmpeg", | ||
"^@types/wav" | ||
] | ||
}, | ||
{ | ||
"groupName": "Solana packages", | ||
"matchPackagePatterns": [ | ||
"^@solana/" | ||
] | ||
} | ||
], | ||
"timezone": "UTC", | ||
"schedule": ["every weekend"], | ||
"prHourlyLimit": 2, | ||
"prConcurrentLimit": 10, | ||
"rangeStrategy": "pin", | ||
"separateMajorMinor": true, | ||
"dependencyDashboard": true | ||
} |