build sass using dart-sass, bypassing css extractor

This commit is contained in:
realaravinth
2021-12-10 06:16:03 +05:30
parent e399f82ac4
commit 5afa531bb8
8 changed files with 54 additions and 66 deletions

View File

@@ -63,14 +63,14 @@ lazy_static! {
pub static ref JS: &'static str =
FILES.get("./static/cache/bundle/bundle.js").unwrap();
pub static ref CSS: &'static str =
FILES.get("./static/cache/bundle/bundle.css").unwrap();
FILES.get("./static/cache/bundle/css/main.css").unwrap();
pub static ref MOBILE_CSS: &'static str =
FILES.get("./static/cache/bundle/mobile.css").unwrap();
FILES.get("./static/cache/bundle/css/mobile.css").unwrap();
pub static ref VERIFICATIN_WIDGET_JS: &'static str =
FILES.get("./static/cache/bundle/verificationWidget.js").unwrap();
pub static ref VERIFICATIN_WIDGET_CSS: &'static str =
FILES.get("./static/cache/bundle/verificationWidget.css").unwrap();
FILES.get("./static/cache/bundle/css/widget.css").unwrap();
/// points to source files matching build commit
pub static ref SOURCE_FILES_OF_INSTANCE: String = {

View File

@@ -39,8 +39,8 @@ mod tests {
#[test]
fn filemap_works() {
let files = super::FileMap::new();
let css = files.get("./static/cache/bundle/bundle.css").unwrap();
let css = files.get("./static/cache/bundle/css/main.css").unwrap();
println!("{}", css);
assert!(css.contains("/assets/bundle/bundle"));
assert!(css.contains("/assets/bundle/css"));
}
}