-
Notifications
You must be signed in to change notification settings - Fork 1
/
patternlab-config.json
145 lines (145 loc) · 3.18 KB
/
patternlab-config.json
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
{
"cacheBust": true,
"cleanPublic": true,
"defaultPattern": "all",
"defaultShowPatternInfo": false,
"ishControlsHide": {
"s": false,
"m": false,
"l": false,
"full": false,
"random": false,
"disco": false,
"hay": true,
"mqs": false,
"find": false,
"views-all": false,
"views-annotations": false,
"views-code": false,
"views-new": false,
"tools-all": false,
"tools-docs": false
},
"ishViewportRange": {
"s": [
240,
500,
240,
500,
240,
500
],
"m": [
500,
800,
500,
800,
500,
800
],
"l": [
800,
2600,
800,
2600,
800,
2600
]
},
"logLevel": "info",
"outputFileSuffixes": {
"rendered": ".rendered",
"rawTemplate": "",
"markupOnly": ".markup-only"
},
"paths": {
"source": {
"root": "./src/",
"patterns": "./src/patterns/",
"data": "./src/styleguide/data/",
"meta": "./src/styleguide/meta/",
"annotations": "./src/styleguide/annotations/",
"styleguide": "./dist/",
"patternlabFiles": {
"general-header": "views/partials/general-header.mustache",
"general-footer": "views/partials/general-footer.mustache",
"patternSection": "views/partials/patternSection.mustache",
"patternSectionSubtype": "views/partials/patternSectionSubtype.mustache",
"viewall": "views/viewall.mustache"
},
"js": "./dist/js",
"images": "./dist/images",
"fonts": "./dist/fonts",
"css": "./dist/css"
},
"public": {
"root": "./patternlab/",
"patterns": "./patternlab/patterns/",
"data": "./patternlab/styleguide/data/",
"annotations": "./patternlab/annotations/",
"styleguide": "./patternlab/styleguide/",
"js": "./patternlab/js",
"images": "./patternlab/images",
"fonts": "./patternlab/fonts",
"css": "./patternlab/css"
}
},
"patternExtension": "twig",
"patternStateCascade": [
"inprogress",
"inreview",
"complete"
],
"patternExportDirectory": "./pattern_exports/",
"patternExportPatternPartials": [],
"serverOptions": {
"wait": 1000
},
"starterkitSubDir": "dist",
"styleGuideExcludes": [],
"theme": {
"color": "light",
"density": "compact",
"layout": "horizontal"
},
"uikits": [
{
"name": "uikit-workshop",
"outputDir": "",
"enabled": true,
"excludedPatternStates": [],
"excludedTags": []
}
],
"engines": {
"twig": {
"namespaces": [
{
"id": "uikit",
"recursive": true,
"paths": [
"./node_modules/@pattern-lab/uikit-workshop/views-twig"
]
},
{
"id": "d8_theme",
"recursive": true,
"paths": [
"./src/patterns/components",
"./src/patterns/global",
"./src/patterns/pages",
"./src/patterns/layout"
]
}
],
"alterTwigEnv": [
{
"file": "./src/styleguide/drupal-twig/alter-twig.php",
"functions": [
"twig_extensions"
]
}
]
}
}
}