For sass users, it would be nice to be able to specify the path at which stylesheets are generated.
To do this, we would probably need to have the concept of variables within a path. The default could look like this:
{
"stylesheet": {
"path": "/client/templates/$template-name/"
}
}
For sass, it would look something like:
{
"stylesheet": {
"path": "/client/sass/pages/"
}
}
Excluding the $template-name variable would prevent the stylesheet generator from creating an additional folder (named whatever the template name is).
In the generator, we could just tear down the path from the config file and reconstruct it with the correct values.
For sass users, it would be nice to be able to specify the path at which stylesheets are generated.
To do this, we would probably need to have the concept of variables within a path. The default could look like this:
{ "stylesheet": { "path": "/client/templates/$template-name/" } }For sass, it would look something like:
{ "stylesheet": { "path": "/client/sass/pages/" } }Excluding the
$template-namevariable would prevent the stylesheet generator from creating an additional folder (named whatever the template name is).In the generator, we could just tear down the path from the config file and reconstruct it with the correct values.