-
Notifications
You must be signed in to change notification settings - Fork 142
/
themes.json.sample
executable file
·37 lines (37 loc) · 1.04 KB
/
themes.json.sample
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
{
"blank": {
"src": "vendor/snowdog/theme-blank-sass",
"dest": "pub/static/frontend/Snowdog/blank",
"locale": ["en_US"],
"ignore": [".test"]
},
"basic-child": {
"src": "vendor/snowdog/theme-basic-child",
"dest": "pub/static/frontend/Snowdog/basic-child",
"locale": ["en_US"],
"parent": "blank"
},
"child-with-locale-overwrites": {
"src": "vendor/snowdog/theme-custom",
"dest": "pub/static/frontend/Snowdog/child-with-locale-overwrites",
"locale": ["en_US", "pl_PL"],
"parent": "blank"
},
"all-possible-options": {
"src": "vendor/snowdog/theme-all-possible-options",
"dest": "pub/static/frontend/Snowdog/all-possible-options",
"locale": ["en_US", "pl_PL"],
"parent": "blank",
"stylesDir": "web/css",
"includePaths": ["../../../node_modules"],
"postcss": ["autoprefixer()"],
"disableSuffix": true,
"modules": {
"Snowdog_Sample": "vendor/snowdog/module-sample"
},
"ignore": [
"vendor/snowdog/module-sample/{docs,dist}/**",
"*.xml"
]
}
}