@ankhorage/renovate 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +21 -0
  3. package/README.md +54 -0
  4. package/default.json +53 -0
  5. package/devtools-owner.json +25 -0
  6. package/dist/changeset-workflow.test.d.ts +2 -0
  7. package/dist/changeset-workflow.test.d.ts.map +1 -0
  8. package/dist/changeset-workflow.test.js +135 -0
  9. package/dist/changeset-workflow.test.js.map +1 -0
  10. package/dist/default.test.d.ts +2 -0
  11. package/dist/default.test.d.ts.map +1 -0
  12. package/dist/default.test.js +139 -0
  13. package/dist/default.test.js.map +1 -0
  14. package/dist/index.d.ts +8 -0
  15. package/dist/index.d.ts.map +1 -0
  16. package/dist/index.js +8 -0
  17. package/dist/index.js.map +1 -0
  18. package/dist/index.test.d.ts +2 -0
  19. package/dist/index.test.d.ts.map +1 -0
  20. package/dist/index.test.js +6 -0
  21. package/dist/index.test.js.map +1 -0
  22. package/examples/devtools-renovate.json5 +14 -0
  23. package/examples/renovate.json5 +17 -0
  24. package/package.json +72 -0
  25. package/paradox/badges/build.svg +7 -0
  26. package/paradox/badges/docs.svg +7 -0
  27. package/paradox/badges/eslint.svg +7 -0
  28. package/paradox/badges/license.svg +7 -0
  29. package/paradox/badges/npm.svg +7 -0
  30. package/paradox/badges/prettier.svg +7 -0
  31. package/paradox/badges/runtime.svg +7 -0
  32. package/paradox/badges/tests.svg +7 -0
  33. package/paradox/badges/typescript.svg +7 -0
  34. package/paradox/components.md +1 -0
  35. package/paradox/diagrams/architecture-overview.mmd +12 -0
  36. package/paradox/diagrams/export-graph.mmd +5 -0
  37. package/paradox/diagrams/module-relationships.mmd +6 -0
  38. package/paradox/exports.json +1 -0
  39. package/paradox/exports.md +1 -0
  40. package/paradox/index.html +348 -0
  41. package/paradox/paradox.json +283 -0
@@ -0,0 +1,283 @@
1
+ {
2
+ "packageName": "@ankhorage/renovate",
3
+ "packageId": "@ankhorage/renovate",
4
+ "description": "Ankhorage dependency update policy and automation powered by Renovate.",
5
+ "collaborators": null,
6
+ "donation": null,
7
+ "badges": [
8
+ {
9
+ "id": "license",
10
+ "label": "license",
11
+ "value": "MIT",
12
+ "color": "2563eb"
13
+ },
14
+ {
15
+ "id": "npm",
16
+ "label": "npm",
17
+ "value": "v0.1.1",
18
+ "color": "cb3837"
19
+ },
20
+ {
21
+ "id": "runtime",
22
+ "label": "runtime",
23
+ "value": "bun",
24
+ "color": "f59e0b"
25
+ },
26
+ {
27
+ "id": "typescript",
28
+ "label": "typescript",
29
+ "value": "strict",
30
+ "color": "2563eb"
31
+ },
32
+ {
33
+ "id": "eslint",
34
+ "label": "eslint",
35
+ "value": "checked",
36
+ "color": "0a7f3f"
37
+ },
38
+ {
39
+ "id": "prettier",
40
+ "label": "prettier",
41
+ "value": "checked",
42
+ "color": "0a7f3f"
43
+ },
44
+ {
45
+ "id": "build",
46
+ "label": "build",
47
+ "value": "checked",
48
+ "color": "0a7f3f"
49
+ },
50
+ {
51
+ "id": "tests",
52
+ "label": "tests",
53
+ "value": "checked",
54
+ "color": "0a7f3f"
55
+ },
56
+ {
57
+ "id": "docs",
58
+ "label": "docs",
59
+ "value": "paradox",
60
+ "color": "0f766e"
61
+ }
62
+ ],
63
+ "usage": null,
64
+ "readmeUsageDescription": "Extend the repository-hosted preset from each Ankhorage repository that Renovate manages.",
65
+ "readmeUsage": [
66
+ {
67
+ "title": "Devtools owner repository configuration",
68
+ "description": "Devtools owner repository configuration\n\nLoads the owner-specific policy that enables and groups the root Bun, ESLint, Knip, Prettier,\nTypeScript, and validation/publishing dependencies maintained by @ankhorage/devtools. Major\nupgrades remain reviewable. Do not use this profile in normal consumer repositories.",
69
+ "language": "",
70
+ "code": "{\n $schema: 'https://docs.renovatebot.com/renovate-schema.json',\n extends: ['github>ankhorage/renovate:devtools-owner'],\n}",
71
+ "sourcePath": "examples/devtools-renovate.json5"
72
+ },
73
+ {
74
+ "title": "Repository configuration",
75
+ "description": "Repository configuration\n\nLoads the normal consumer policy from its default branch. The policy keeps Devtools-owned\npackages and canonical workflows out of independent Renovate updates, and groups compatible\n@ankhorage/ankh and @ankhorage/devtools releases for the trusted automatic synchronization\nworkflow. The workflow runs the exact lock-selected Devtools provider with either the consumer's\nlock-selected Ankh CLI or its own exact canonical CLI pin, requires byte stability, and commits\nthe complete managed result without a manual repository sync.",
76
+ "language": "",
77
+ "code": "{\n $schema: 'https://docs.renovatebot.com/renovate-schema.json',\n extends: ['github>ankhorage/renovate'],\n}",
78
+ "sourcePath": "examples/renovate.json5"
79
+ }
80
+ ],
81
+ "readmeCli": null,
82
+ "readmeConfig": null,
83
+ "config": null,
84
+ "entrypoints": [
85
+ "src/index.ts"
86
+ ],
87
+ "modules": [
88
+ {
89
+ "path": "src/changeset-workflow.test.ts",
90
+ "isEntrypoint": false,
91
+ "dependencies": [],
92
+ "exports": []
93
+ },
94
+ {
95
+ "path": "src/default.test.ts",
96
+ "isEntrypoint": false,
97
+ "dependencies": [],
98
+ "exports": []
99
+ },
100
+ {
101
+ "path": "src/index.test.ts",
102
+ "isEntrypoint": false,
103
+ "dependencies": [
104
+ "src/index.ts"
105
+ ],
106
+ "exports": []
107
+ },
108
+ {
109
+ "path": "src/index.ts",
110
+ "isEntrypoint": true,
111
+ "dependencies": [],
112
+ "exports": []
113
+ }
114
+ ],
115
+ "exports": [],
116
+ "components": [],
117
+ "sourceFunctions": [
118
+ {
119
+ "name": "resolveFixtureVersion",
120
+ "description": null,
121
+ "sourceLocation": {
122
+ "filePath": "src/changeset-workflow.test.ts",
123
+ "line": 88,
124
+ "column": 1
125
+ }
126
+ },
127
+ {
128
+ "name": "dependency",
129
+ "description": null,
130
+ "sourceLocation": {
131
+ "filePath": "src/default.test.ts",
132
+ "line": 155,
133
+ "column": 1
134
+ }
135
+ },
136
+ {
137
+ "name": "matchesRule",
138
+ "description": null,
139
+ "sourceLocation": {
140
+ "filePath": "src/default.test.ts",
141
+ "line": 166,
142
+ "column": 1
143
+ }
144
+ },
145
+ {
146
+ "name": "matches",
147
+ "description": null,
148
+ "sourceLocation": {
149
+ "filePath": "src/default.test.ts",
150
+ "line": 176,
151
+ "column": 1
152
+ }
153
+ },
154
+ {
155
+ "name": "readPreset",
156
+ "description": null,
157
+ "sourceLocation": {
158
+ "filePath": "src/default.test.ts",
159
+ "line": 186,
160
+ "column": 1
161
+ }
162
+ },
163
+ {
164
+ "name": "resolveRules",
165
+ "description": null,
166
+ "sourceLocation": {
167
+ "filePath": "src/default.test.ts",
168
+ "line": 190,
169
+ "column": 1
170
+ }
171
+ }
172
+ ],
173
+ "sequenceScenarios": [],
174
+ "graphs": {
175
+ "imports": [
176
+ {
177
+ "fromPath": "src/index.test.ts",
178
+ "toPath": "src/index.ts",
179
+ "sourcePath": "src/index.test.ts"
180
+ }
181
+ ],
182
+ "calls": [
183
+ {
184
+ "fromSymbol": "src/changeset-workflow.test.ts",
185
+ "toSymbol": "readFileSync",
186
+ "callExpression": "readFileSync",
187
+ "sourcePath": "src/changeset-workflow.test.ts"
188
+ },
189
+ {
190
+ "fromSymbol": "src/changeset-workflow.test.ts",
191
+ "toSymbol": "describe",
192
+ "callExpression": "describe",
193
+ "sourcePath": "src/changeset-workflow.test.ts"
194
+ },
195
+ {
196
+ "fromSymbol": "src/changeset-workflow.test.ts",
197
+ "toSymbol": "test",
198
+ "callExpression": "test",
199
+ "sourcePath": "src/changeset-workflow.test.ts"
200
+ },
201
+ {
202
+ "fromSymbol": "src/changeset-workflow.test.ts",
203
+ "toSymbol": "expect",
204
+ "callExpression": "expect",
205
+ "sourcePath": "src/changeset-workflow.test.ts"
206
+ },
207
+ {
208
+ "fromSymbol": "src/changeset-workflow.test.ts",
209
+ "toSymbol": "resolveFixtureVersion",
210
+ "callExpression": "resolveFixtureVersion",
211
+ "sourcePath": "src/changeset-workflow.test.ts"
212
+ },
213
+ {
214
+ "fromSymbol": "src/default.test.ts",
215
+ "toSymbol": "readPreset",
216
+ "callExpression": "readPreset",
217
+ "sourcePath": "src/default.test.ts"
218
+ },
219
+ {
220
+ "fromSymbol": "src/default.test.ts",
221
+ "toSymbol": "describe",
222
+ "callExpression": "describe",
223
+ "sourcePath": "src/default.test.ts"
224
+ },
225
+ {
226
+ "fromSymbol": "src/default.test.ts",
227
+ "toSymbol": "test",
228
+ "callExpression": "test",
229
+ "sourcePath": "src/default.test.ts"
230
+ },
231
+ {
232
+ "fromSymbol": "src/default.test.ts",
233
+ "toSymbol": "expect",
234
+ "callExpression": "expect",
235
+ "sourcePath": "src/default.test.ts"
236
+ },
237
+ {
238
+ "fromSymbol": "src/default.test.ts",
239
+ "toSymbol": "resolveRules",
240
+ "callExpression": "resolveRules",
241
+ "sourcePath": "src/default.test.ts"
242
+ },
243
+ {
244
+ "fromSymbol": "src/default.test.ts",
245
+ "toSymbol": "dependency",
246
+ "callExpression": "dependency",
247
+ "sourcePath": "src/default.test.ts"
248
+ },
249
+ {
250
+ "fromSymbol": "matchesRule",
251
+ "toSymbol": "matches",
252
+ "callExpression": "matches",
253
+ "sourcePath": "src/default.test.ts"
254
+ },
255
+ {
256
+ "fromSymbol": "readPreset",
257
+ "toSymbol": "readFileSync",
258
+ "callExpression": "readFileSync",
259
+ "sourcePath": "src/default.test.ts"
260
+ },
261
+ {
262
+ "fromSymbol": "src/default.test.ts",
263
+ "toSymbol": "matchesRule",
264
+ "callExpression": "matchesRule",
265
+ "sourcePath": "src/default.test.ts"
266
+ },
267
+ {
268
+ "fromSymbol": "src/index.test.ts",
269
+ "toSymbol": "test",
270
+ "callExpression": "test",
271
+ "sourcePath": "src/index.test.ts"
272
+ },
273
+ {
274
+ "fromSymbol": "src/index.test.ts",
275
+ "toSymbol": "expect",
276
+ "callExpression": "expect",
277
+ "sourcePath": "src/index.test.ts"
278
+ }
279
+ ],
280
+ "typeReferences": [],
281
+ "componentComposition": []
282
+ }
283
+ }