deno_sass 是一个用于 Deno 的 sass
编译工具,使用 rust 编写
注:目前(2020-07-20)暂不支持 Windows 平台。
使用
import { compile } from "https://x.nest.land/sass@0.2.0/mod.ts";
compile("a { color: #000; }", {
output_style: "nested",
precision: 5,
indented_syntax: false,
include_paths: []
}).result;