bdkjones / CodeKit-1-Old

146 stars 1 forks source link

SCSS/SASS - quiet option #670

Open jakob-e opened 11 years ago

jakob-e commented 11 years ago

It seems like deprecation warnings makes CodeKit choke - why a quiet option would be nice (you are not getting warnings anyways).

Example:

.extend { content:'A'}
@media all {.extend { content:'B'} }

@mixin extendTest($times){
    @for $i from 0 through $times{
        .test#{$i} { @extend .extend; }
        @media all { .test#{$i} { @extend .extend; } }
    } 
}

// First try this
@include extendTest(20); // Works and output is perfectly valid

// And then this 
// @include extendTest(50); // Nothing, no warnings, just nothing 

Best, Jakob E