2018-12-06 17:54:16 +00:00
|
|
|
extern crate ructe;
|
|
|
|
extern crate rocket_i18n;
|
2018-12-15 21:06:27 +00:00
|
|
|
extern crate rsass;
|
2018-12-06 17:54:16 +00:00
|
|
|
use ructe::*;
|
2018-12-25 10:51:40 +00:00
|
|
|
use std::{env, fs::*, io::Write, path::PathBuf};
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
let in_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap())
|
|
|
|
.join("templates");
|
|
|
|
compile_templates(&in_dir, &out_dir).expect("compile templates");
|
|
|
|
|
|
|
|
println!("cargo:rerun-if-changed=po");
|
|
|
|
rocket_i18n::update_po("plume", &["de", "en", "fr", "gl", "it", "ja", "nb", "pl", "ru"]);
|
|
|
|
rocket_i18n::compile_po("plume", &["de", "en", "fr", "gl", "it", "ja", "nb", "pl", "ru"]);
|
2018-12-15 21:06:27 +00:00
|
|
|
|
|
|
|
println!("cargo:rerun-if-changed=static/css");
|
|
|
|
let mut out = File::create("static/css/main.css").expect("Couldn't create main.css");
|
|
|
|
out.write_all(
|
|
|
|
&rsass::compile_scss_file("static/css/main.scss".as_ref(), rsass::OutputStyle::Compressed)
|
|
|
|
.expect("Error during SCSS compilation")
|
|
|
|
).expect("Couldn't write CSS output");
|
2018-12-25 10:51:40 +00:00
|
|
|
|
|
|
|
copy("target/deploy/plume-front.wasm", "static/plume-front.wasm")
|
|
|
|
.and_then(|_| read_to_string("target/deploy/plume-front.js"))
|
|
|
|
.and_then(|js| write("static/plume-front.js", js.replace("\"plume-front.wasm\"", "\"/static/plume-front.wasm\""))).ok();
|
2018-12-06 17:54:16 +00:00
|
|
|
}
|