1 Star 1 Fork 0

Vantler/miniserve

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.rs 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lukas Stabe 提交于 2020-10-02 02:36 . more feedback
use std::env;
use std::fs;
use std::path::Path;
fn main() {
let out_dir = env::var_os("OUT_DIR").expect("OUT_DIR env var missing");
let dest_path = Path::new(&out_dir).join("style.css");
fs::write(
&dest_path,
grass::from_string(
include_str!("data/style.scss").to_string(),
&grass::Options::default(),
)
.expect("scss failed to compile"),
)
.expect("failed to write css file");
println!("cargo:rerun-if-changed=data/style.scss");
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vantler/miniserve.git
git@gitee.com:vantler/miniserve.git
vantler
miniserve
miniserve
master

搜索帮助