lifenautjoe/webpack-starter-basic

*-close classes were removed from build

theRenard opened this issue · 1 comments

got this weird issue, if a class ends with -close it is removed from the built .css

index.scss

.mfp-close {
    width: 100px;
    height: 100px;
}
.test-close {
    width: 100px;
    height: 100px;
}
.close {
    width: 100px;
    height: 100px;
}
.test {
    width: 100px;
    height: 100px;
}

generated styles.css

.close,.test{width:100px;height:100px}
/*# sourceMappingURL=styles.eae04a2f42f80581e776.css.map */

Huh this is weird indeed. I'll investigate. Thanks!