sasso 0.8.0

A pure-Rust SCSS to CSS compiler (a dart-sass alternative). Zero dependencies, wasm-friendly, embeddable as a library and usable as a CLI.
Documentation
1
2
3
4
5
6
7
8
9
@function fail-deep() {
  @error "function chain failure";
}
@function wrapper() {
  @return fail-deep();
}
.foo {
  x: wrapper();
}