d766570501
Signed-off-by: secustor <sebastian@poxhofer.at>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
|
|
labels: ['dependencies'],
|
|
|
|
extends: ['config:best-practices', ':gitSignOff'],
|
|
// do not pin dev dependencies, which are part of the best-practices preset
|
|
ignorePresets: [':pinDevDependencies'],
|
|
|
|
// the default limit are 10 PRs
|
|
prConcurrentLimit: 20,
|
|
|
|
postUpdateOptions: ['yarnDedupeHighest'],
|
|
rangeStrategy: 'update-lockfile',
|
|
// @elastic/elasticsearch is ignored due to licensing issues. See #10992
|
|
ignoreDeps: ['@elastic/elasticsearch', 'event-source-polyfill'],
|
|
packageRules: [
|
|
{
|
|
matchSourceUrlPrefixes: ['https://github.com/spotify/web-scripts'],
|
|
groupName: 'Spotify web-scripts monorepo packages',
|
|
rangeStrategy: 'replace',
|
|
},
|
|
{
|
|
matchSourceUrlPrefixes: ['https://github.com/microsoft/rushstack'],
|
|
groupName: 'API Extractor / Rush Stack monorepo packages',
|
|
rangeStrategy: 'replace',
|
|
},
|
|
{
|
|
matchSourceUrlPrefixes: ['https://github.com/gregberge/svgr'],
|
|
groupName: 'SVGR monorepo packages',
|
|
rangeStrategy: 'replace',
|
|
},
|
|
// We update yarn packages manually as it's gzip'd and we don't want to pollute the repository too much.
|
|
{
|
|
matchSourceUrls: ['https://github.com/yarnpkg/berry'],
|
|
enabled: false,
|
|
},
|
|
],
|
|
}
|