We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there is no indication of the callee, if you throw an error within the mixin
`@mixin foo($bar){ @if $bar != "bar"{ @error "$bar needs to be bar"; } }
@include foo("notbar");`
Output sassc:
Error: $bar needs to be bar on line 3 of testSass.scss @error "$bar needs to be bar"; ---------------^
Output ruby:
Error: $bar needs to be bar on line 3 of testSass.scss, in foo from line 7 of testSass.scss Use --trace for backtrace.
I just updated to a new version and it throws some errors, but since its a big project I have no clue where they are thrown.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
there is no indication of the callee, if you throw an error within the mixin
`@mixin foo($bar){
@if $bar != "bar"{
@error "$bar needs to be bar";
}
}
@include foo("notbar");`
Output sassc:
Error: $bar needs to be bar on line 3 of testSass.scss @error "$bar needs to be bar"; ---------------^
Output ruby:
Error: $bar needs to be bar on line 3 of testSass.scss, in foo from line 7 of testSass.scss Use --trace for backtrace.
I just updated to a new version and it throws some errors, but since its a big project I have no clue where they are thrown.
The text was updated successfully, but these errors were encountered: