-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json5
27 lines (25 loc) · 910 Bytes
/
app.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"github>secustor/backstage-renovate-config//presets/no-esm",
"github>secustor/backstage-renovate-config//presets/unsupported-framework-upgrades",
"github>secustor/backstage-renovate-config//presets/update-backstage-json",
],
// create a single PR to update all in range upgrades, to save CI minutes
lockFileMaintenance: {
enabled: true,
},
postUpdateOptions: [
// run `yarn dedupe --strategy highest` after every npm package upgrade
"yarnDedupeHighest",
],
packageRules: [
{
matchSourceUrls: ["https://github.com/backstage/backstage"],
// update Backstage packages immediately, this is to prevent to update backstage.json only but not the packages
minimumReleaseAge: null,
// group all Backstage packages together
groupName: "Backstage Core",
},
],
}