sass-brunch icon indicating copy to clipboard operation
sass-brunch copied to clipboard

error when i try to compile a function

Open leonardotessaroalves opened this issue 8 years ago • 1 comments

i dont know if it is a error, but when i try to compile a function on my scss file i get some error and the process stop.

@function slick-image-url($url) { @if function-exists(image-url) { @return image-url($url); } @else { @return url($slick-loader-path + $url); } }

@function slick-font-url($url) { @if function-exists(font-url) { @return font-url($url); } @else { @return url($slick-font-path + $url); } }

/// ERROR if i remove this comment ==> /* .slick-list { .slick-loading & { background: #fff slick-image-url("ajax-loader.gif") center center no-repeat; } } */

leonardotessaroalves avatar Dec 26 '16 13:12 leonardotessaroalves

Hey, @leonardotessaroalves! Could you provide me a repo that reproduces your problem? Please, include your Brunch config, package.json and files that cause the problem. I'm going to dive in sources and help you to resolve this issue.

denysdovhan avatar Dec 27 '16 17:12 denysdovhan