You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using grunt-contrib-sass for my build process to generate different CSS files, depending on several SASS files. Currently I am facing one problem, where one variable, I want to overwrite in another SASS file is not respected. For other variables this is working as expected.
My grunt task looks like this:
The main.scss includes all relevant SASS files and also the _variables.scss of the skedflex folder. This works all as expected:
/*
* SkedFlex Design
*/
@import "../skedflex/variables";
// load Base Styles here
@import "../base/base";
/* ++++++++++++++++++++++++++++++++
* Other Styles
* +++++++++++++++++++++++++++++++ */
@import "../skedflex/fullcalendar_custom";
...
The file /sass/demo/main-demo.scss is another SASS definition that should overwrite some of the variables and use them in the generation process. But some of the variables are not recognized. The file is defined as follows:
/*
* SkedFlex Design
*/
@import "../skedflex/variables";
@import "custom-variables";
// load Base Styles here
@import "../base/base";
/* ++++++++++++++++++++++++++++++++
* Other Styles
* +++++++++++++++++++++++++++++++ */
@import "../skedflex/fullcalendar_custom";
...
I have also tried to use the option noCache: true but this also has no effect. What am I doing wrong here?
The text was updated successfully, but these errors were encountered:
I am using
grunt-contrib-sass
for my build process to generate different CSS files, depending on several SASS files. Currently I am facing one problem, where one variable, I want to overwrite in another SASS file is not respected. For other variables this is working as expected.My grunt task looks like this:
The file structure is like this:
The
main.scss
includes all relevant SASS files and also the _variables.scss of the skedflex folder. This works all as expected:The file
/sass/demo/main-demo.scss
is another SASS definition that should overwrite some of the variables and use them in the generation process. But some of the variables are not recognized. The file is defined as follows:I have also tried to use the option
noCache: true
but this also has no effect. What am I doing wrong here?The text was updated successfully, but these errors were encountered: