I have all my sass files in main.css which is being compiled by grunt.
The structure is as follows:
main.scss
/* Extended CSS */
@import '_extend.scss';
/* Generic CSS */
@import 'general.scss';
/* View based CSS */
@import 'create-obj.scss';
@import 'css2.scss';
/* Module based CSS **/
@import 'css3.scss';
_extend.scss
%width-100 {
width: 100%;
}
create-obj.scss
ul.form-fields {
> li {
@extend %width-100;
@extend %float-l;
position: relative;
input {
padding-right: 160px;
}
}
}
When it is being compiled by grunt i am getting the following error:
Running "compass:server" (compass) task
error src/main/webapp/assets/scss/create-obj.scss (Line 14: "ul.form-fields > li" failed to @extend "%width-100".
The selector "%width-100" was not found.
Use "@extend %width-100 !optional" if the extend should be able to fail.
)
write src/main/webapp/assets/css/main.css (0.049s)
Compilation failed in 1 files.
Warning: ↑ Use --force to continue.
Aborted due to warnings.
And when i resave _extend.scss, then it get successful.
In a nutshell everytime when i add some css in css1.scss and i save it. Grunt gives me compile error and then i need to save _extend.scss to complete the compile.
Any feedback is appreciated.