-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocmd.config.js
More file actions
417 lines (416 loc) · 10.4 KB
/
docmd.config.js
File metadata and controls
417 lines (416 loc) · 10.4 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
// docmd.config.js: basic config for docmd
// basePath is "/variables-contract" for GitHub Pages
// Vercel deploys from gh-pages branch (same build) and uses rewrites
const basePath = "/variables-contract";
const siteUrl = "https://marklearst.github.io/variables-design-standard";
module.exports = {
siteTitle: "VDS",
srcDir: "docs",
outputDir: "site",
basePath,
siteUrl,
search: true,
sidebar: {
collapsible: true,
defaultCollapsed: false,
},
logo: {
light: "/assets/images/vds.svg", // Path to logo for light mode
dark: "/assets/images/vds.svg", // Path to logo for dark mode
alt: "Variable Design Standard (VDS) Logo", // Alt text for the logo
href: "/", // Optional: link for the logo, defaults to site root
height: "100px", // Optional: specify height via CSS is often better
},
theme: {
name: "default",
defaultMode: "dark",
enableModeToggle: true,
positionMode: "top",
customCss: ["/assets/css/base.css"],
// customCss: ["/assets/css/vercel-theme.css"],
},
autoTitleFromH1: true,
copyCode: true,
sponsor: {
enabled: true,
title: "Sponsor the Project",
link: "https://github.com/sponsors/marklearst",
},
customJs: ["/assets/js/vercel-analytics.js"],
navigation: [
{ title: "Home", path: ".", icon: "home" },
{
title: "Introduction",
icon: "book",
collapsible: true,
children: [
{
title: "Why Variables",
path: "introduction/why-variables",
icon: "help-circle",
},
{
title: "Comparison",
path: "introduction/comparison",
icon: "git-compare",
},
{
title: "Positioning",
path: "introduction/positioning",
icon: "target",
},
],
},
{
title: "Contract",
icon: "file-text",
collapsible: true,
children: [
{
title: "Variable Contract",
path: "contract/variable-contract",
icon: "file-text",
},
{
title: "DTCG Alignment",
path: "contract/dtcg-alignment",
icon: "link",
},
{ title: "Groups", path: "contract/groups", icon: "folder" },
{
title: "References",
path: "contract/references",
icon: "arrow-right",
},
{ title: "Modes", path: "contract/modes", icon: "toggle-left" },
{ title: "Types", path: "contract/types", icon: "type" },
{
title: "Composite Types",
path: "contract/composite-types",
icon: "layers",
},
{ title: "Naming", path: "contract/naming", icon: "tag" },
{ title: "Anatomy", path: "contract/anatomy", icon: "layers" },
],
},
{
title: "Adoption",
icon: "rocket",
collapsible: true,
children: [
{
title: "Getting Started",
path: "adoption/getting-started",
icon: "flag",
},
{
title: "Implementation Checklist",
path: "adoption/implementation-checklist",
icon: "check-square",
},
{
title: "Migration Strategy",
path: "adoption/migration-strategy",
icon: "arrow-right",
},
],
},
{
title: "Governance",
icon: "shield",
collapsible: true,
children: [
{ title: "Governance Index", path: "governance", icon: "list" },
{ title: "Overview", path: "governance/overview", icon: "book-open" },
{
title: "Getting Started",
path: "governance/getting-started",
icon: "flag",
},
{
title: "Accessibility",
path: "governance/accessibility",
icon: "eye",
},
{
title: "Change Control",
path: "governance/change-control",
icon: "git-branch",
},
{
title: "Validation",
path: "governance/validation",
icon: "check-circle",
},
{
title: "Versioning",
path: "governance/versioning",
icon: "tag",
},
{
title: "Migration",
path: "governance/migration",
icon: "arrow-right",
},
{
title: "Troubleshooting",
path: "governance/troubleshooting",
icon: "help-circle",
},
{
title: "Roles",
icon: "users",
collapsible: true,
children: [
{
title: "Designer",
path: "governance/roles/designer",
icon: "pen-tool",
},
{
title: "Design Engineer",
path: "governance/roles/design-engineer",
icon: "user",
},
{
title: "Frontend Engineer",
path: "governance/roles/frontend-engineer",
icon: "code",
},
],
},
],
},
{
title: "Scenarios",
icon: "layers",
collapsible: true,
children: [
{
title: "Multi-Brand",
path: "scenarios/multi-brand",
icon: "palette",
},
{
title: "Multi-Theme",
path: "scenarios/multi-theme",
icon: "toggle-left",
},
{ title: "Large Sets", path: "scenarios/large-sets", icon: "database" },
{
title: "Component Integration",
path: "scenarios/component-integration",
icon: "package",
},
],
},
{
title: "Tooling",
icon: "wrench",
collapsible: true,
children: [
{ title: "Ecosystem", path: "tooling/ecosystem", icon: "grid" },
{ title: "CI/CD", path: "tooling/ci-cd", icon: "git-branch" },
{
title: "Build Pipelines",
path: "tooling/build-pipelines",
icon: "settings",
},
{ title: "Figma", path: "adapters/figma", icon: "pen-tool" },
{
title: "Tokens Studio",
path: "adapters/tokens-studio",
icon: "sliders",
},
{
title: "Style Dictionary",
path: "adapters/style-dictionary",
icon: "code",
},
],
},
{
title: "Consumption",
icon: "code",
collapsible: true,
children: [
{ title: "CSS", path: "consumption/css", icon: "file-code" },
{ title: "TypeScript", path: "consumption/typescript", icon: "type" },
{
title: "UI Libraries",
path: "consumption/frameworks",
icon: "layers",
},
],
},
{
title: "Design",
icon: "pen-tool",
collapsible: true,
children: [
{ title: "Figma Naming", path: "design/figma-naming", icon: "tag" },
{
title: "Figma Workflow",
path: "design/figma-workflow",
icon: "workflow",
},
{
title: "Component Variables",
path: "design/component-variables",
icon: "package",
},
],
},
{
title: "Testing",
icon: "check-circle",
collapsible: true,
children: [
{
title: "Validation",
path: "testing/validation",
icon: "check-square",
},
{
title: "Visual Regression",
path: "testing/visual-regression",
icon: "image",
},
{
title: "Consumption Tests",
path: "testing/consumption-tests",
icon: "test-tube",
},
],
},
{
title: "Patterns",
icon: "layers",
collapsible: true,
children: [
{
title: "Multi-Brand Architecture",
path: "patterns/multi-brand-architecture",
icon: "palette",
},
{
title: "Theme Composition",
path: "patterns/theme-composition",
icon: "toggle-left",
},
{ title: "Performance", path: "patterns/performance", icon: "zap" },
],
},
{
title: "Adapters",
icon: "wrench",
collapsible: true,
children: [
{ title: "Adapters Overview", path: "adapters", icon: "list" },
{ title: "Figma", path: "adapters/figma", icon: "pen-tool" },
{
title: "Tokens Studio",
path: "adapters/tokens-studio",
icon: "sliders",
},
{
title: "Style Dictionary",
path: "adapters/style-dictionary",
icon: "code",
},
{
title: "Tailwind",
path: "adapters/tailwind",
icon: "wind",
},
],
},
{
title: "Examples",
icon: "code",
collapsible: true,
children: [
{
title: "Figma Export JSON",
path: "examples/figma-export",
icon: "file-code",
},
{
title: "DTCG Compliant Example",
path: "examples/dtcg-compliant",
icon: "file-code",
},
{
title: "Adapter Pipeline",
path: "examples/adapter-pipeline",
icon: "arrow-right",
},
],
},
{
title: "Reference",
icon: "book",
collapsible: true,
children: [
{ title: "Glossary", path: "reference/glossary", icon: "book-open" },
{
title: "Quick Reference",
path: "reference/quick-reference",
icon: "zap",
},
{
title: "Conformance",
path: "reference/conformance",
icon: "check-circle",
},
{
title: "JSON Schema",
path: "schema",
icon: "code",
},
],
},
{
title: "Meta",
icon: "info",
collapsible: true,
children: [
{
title: "Status of this Document",
path: "meta/status-of-this-document",
icon: "file-text",
},
{
title: "Specification Status",
path: "meta/status",
icon: "tag",
},
{
title: "Change Log",
path: "meta/change-log",
icon: "list",
},
{
title: "Contributors",
path: "meta/contributors",
icon: "users",
},
{
title: "References",
path: "meta/references",
icon: "book",
},
],
},
{
title: "FAQ",
icon: "help-circle",
path: "faq",
},
{
title: "License",
icon: "file-text",
path: "license",
},
],
};