I am testing the compilation of the snowdog blank theme with Frontools.
However when I change the locale in my themes.json file it is ignored and only the en_US and pl_PL locales are created.
Am I doing something wrong ?
Below is my themes.json:
{
"blank": {
"src": "vendor/snowdog/theme-blank-sass",
"dest": "pub/static/frontend/Snowdog/blank",
"locale": ["en_US", "en_GB"],
"ignore": [".test"]
},
"basic-child": {
"src": "vendor/snowdog/theme-basic-child",
"dest": "pub/static/frontend/Snowdog/basic-child",
"locale": ["en_US", "en_GB"],
"parent": "blank"
},
"child-with-locale-overwrites": {
"src": "vendor/snowdog/theme-custom",
"dest": "pub/static/frontend/Snowdog/child-with-locale-overwrites",
"locale": ["en_US", "en_GB"],
"localeOverwrites": true,
"parent": "blank"
},
"all-possible-options": {
"src": "vendor/snowdog/theme-all-possible-options",
"dest": "pub/static/frontend/Snowdog/all-possible-options",
"locale": ["en_US", "en_GB"],
"localeOverwrites": true,
"parent": "blank",
"stylesDir": "web/css",
"postcss": ["plugins.autoprefixer()"],
"modules": {
"Snowdog_Sample": "vendor/snowdog/module-sample"
},
"ignore": [
"vendor/snowdog/module-sample/{docs,dist}/**",
"*.xml"
]
}
}
Thanks