|
4 | 4 | "ignorePaths": ["**/node_modules/**"], |
5 | 5 | "schedule": ["on friday"], |
6 | 6 | "vulnerabilityAlerts": { |
7 | | - "enabled": true |
| 7 | + "enabled": true, |
8 | 8 | }, |
9 | 9 | "osvVulnerabilityAlerts": true, |
10 | 10 | "updateInternalDeps": true, |
|
13 | 13 | "enabled": true, |
14 | 14 | "schedule": ["* 10 * * 5"], // Every Friday at 10:00 AM |
15 | 15 | "automerge": true, |
16 | | - "automergeType": "pr" |
| 16 | + "automergeType": "pr", |
17 | 17 | }, |
18 | 18 | "automerge": false, |
19 | 19 | "automergeType": "pr", |
|
24 | 24 | // Do not edit peer dependency ranges in package manifests. |
25 | 25 | { |
26 | 26 | "matchDepTypes": ["peerDependencies"], |
27 | | - "enabled": false |
| 27 | + "enabled": false, |
28 | 28 | }, |
29 | 29 |
|
30 | 30 | // By SemVer |
31 | 31 | { |
32 | 32 | "matchUpdateTypes": ["patch"], |
33 | | - "minimumReleaseAge": "2 days" |
| 33 | + "minimumReleaseAge": "2 days", |
34 | 34 | }, |
35 | 35 | { |
36 | 36 | "matchUpdateTypes": ["minor"], |
37 | | - "minimumReleaseAge": "7 days" |
| 37 | + "minimumReleaseAge": "7 days", |
38 | 38 | }, |
39 | 39 | { |
40 | 40 | "matchUpdateTypes": ["major"], |
41 | | - "minimumReleaseAge": "14 days" |
| 41 | + "minimumReleaseAge": "14 days", |
42 | 42 | }, |
43 | 43 | // By Package Type (App or Package) |
44 | 44 | { |
45 | 45 | // Note: Do not include examples in this group, |
46 | 46 | // they are supposed to be able to run independently |
47 | 47 | // and its conventions. |
48 | 48 | "matchFileNames": ["apps/**"], |
49 | | - "extends": ["config:js-app"] |
| 49 | + "extends": ["config:js-app"], |
50 | 50 | }, |
51 | 51 | { |
52 | 52 | "matchFileNames": ["packages/**", "tooling/**"], |
53 | | - "extends": ["config:js-lib"] |
| 53 | + "extends": ["config:js-lib"], |
54 | 54 | }, |
55 | 55 | // By Package Manager |
| 56 | + { |
| 57 | + // Generated from apps/playgrounds/*/package.json arkenvExamples metadata. |
| 58 | + // Hand-maintained examples, including StackBlitz, remain Renovate-managed. |
| 59 | + "description": "Disable sync-generated example apps", |
| 60 | + "matchFileNames": [ |
| 61 | + // BEGIN GENERATED SYNC EXAMPLES |
| 62 | + "examples/basic/**", |
| 63 | + "examples/basic-js/**", |
| 64 | + "examples/with-bun/**", |
| 65 | + "examples/with-bun-react/**", |
| 66 | + "examples/with-nextjs/**", |
| 67 | + "examples/with-nextjs-strict/**", |
| 68 | + "examples/with-nuxt/**", |
| 69 | + "examples/with-solid-start/**", |
| 70 | + "examples/with-standard-schema/**", |
| 71 | + "examples/with-vite-react/**", |
| 72 | + // END GENERATED SYNC EXAMPLES |
| 73 | + ], |
| 74 | + "enabled": false, |
| 75 | + }, |
56 | 76 | { |
57 | 77 | // Group pnpm workspace updates (minor/patch) across selected dirs |
58 | 78 | "groupName": "the pnpm group", |
|
64 | 84 | "package.json", // Root package.json, |
65 | 85 | "pnpm-workspace.yaml", // Catalog |
66 | 86 | "examples/with-zod/**", // Hand-maintained (not sync-generated) |
67 | | - "examples/with-valibot/**" // Hand-maintained (not sync-generated) |
| 87 | + "examples/with-valibot/**", // Hand-maintained (not sync-generated) |
68 | 88 | ], |
69 | 89 | "matchUpdateTypes": ["minor", "patch"], |
70 | 90 | "matchCurrentVersion": ">=1.0.0", |
71 | 91 | "automerge": true, |
72 | | - "automergeType": "pr" |
| 92 | + "automergeType": "pr", |
73 | 93 | }, |
74 | 94 | { |
75 | 95 | "groupName": "the Bun group", |
76 | 96 | "matchManagers": ["bun"], |
77 | 97 | "matchFileNames": [ |
78 | 98 | ".github/actions/size-limit/package.json", // Bun script |
79 | 99 | "apps/playgrounds/**/*bun*/**", |
80 | | - "examples/**/*bun*/**" |
| 100 | + "examples/**/*bun*/**", |
81 | 101 | ], |
82 | 102 | "matchUpdateTypes": ["minor", "patch"], |
83 | 103 | "matchCurrentVersion": ">=1.0.0", |
84 | 104 | "automerge": true, |
85 | | - "automergeType": "pr" |
| 105 | + "automergeType": "pr", |
86 | 106 | }, |
87 | 107 | { |
88 | 108 | "groupName": "the GitHub Actions group", |
89 | 109 | "matchManagers": ["github-actions"], |
90 | 110 | "matchUpdateTypes": ["minor", "patch"], |
91 | 111 | "automerge": true, |
92 | | - "automergeType": "pr" |
| 112 | + "automergeType": "pr", |
93 | 113 | }, |
94 | 114 | { |
95 | 115 | "groupName": "arkenv packages", |
96 | 116 | "matchPackageNames": ["arkenv"], |
97 | 117 | "matchPackagePatterns": ["^@arkenv/"], |
98 | 118 | "automerge": true, |
99 | | - "automergeType": "pr" |
| 119 | + "automergeType": "pr", |
100 | 120 | }, |
101 | | - { |
102 | | - // Sync-generated examples only — packageManager comes from catalog + transform.js. |
103 | | - // Hand-maintained examples (with-zod, with-valibot) stay Renovate-updatable via the pnpm group. |
104 | | - "description": "Disable packageManager bumps for sync-generated examples; versions come from the catalog + transform.js", |
105 | | - "matchPackageNames": ["npm", "pnpm", "bun"], |
106 | | - "matchFileNames": [ |
107 | | - "examples/basic/**", |
108 | | - "examples/basic-js/**", |
109 | | - "examples/with-nextjs/**", |
110 | | - "examples/with-nextjs-strict/**", |
111 | | - "examples/with-nuxt/**", |
112 | | - "examples/with-solid-start/**", |
113 | | - "examples/with-standard-schema/**", |
114 | | - "examples/with-vite-react/**", |
115 | | - "examples/with-bun/**", |
116 | | - "examples/with-bun-react/**" |
117 | | - ], |
118 | | - "enabled": false |
119 | | - } |
120 | | - ] |
| 121 | + ], |
121 | 122 | } |
0 commit comments