From 3fe5c4477b246778c41f1f39595674287b728118 Mon Sep 17 00:00:00 2001 From: theo Date: Sat, 27 Apr 2024 20:11:28 +0200 Subject: [PATCH] fix: remove useless print --- build.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 77e62cf..9806291 100644 --- a/build.rs +++ b/build.rs @@ -6,6 +6,7 @@ use std::path::Path; use lightningcss::printer::PrinterOptions; use lightningcss::stylesheet::{self, ParserOptions, StyleSheet}; + fn main() -> Result<(), Box> { let scss_path = Path::new("styles/global.scss"); let css_output_path = Path::new("public/styles/global.css"); @@ -23,8 +24,6 @@ fn main() -> Result<(), Box> { ..PrinterOptions::default() }).unwrap(); - println!("{}",minified_css.code); - let mut output_file = File::create(css_output_path)?; output_file.write_all(minified_css.code.as_bytes())?;