This commit is contained in:
Connor Skees 2023-01-08 10:57:00 -05:00
parent a6f8b73324
commit 7b284f1da7
3 changed files with 5 additions and 3 deletions

View File

@ -3,7 +3,7 @@ name = "grass_compiler"
version = "0.12.1"
edition = "2021"
description = "Internal implementation of the grass compiler"
readme = "../README.md"
readme = "../../README.md"
license = "MIT"
categories = ["web-programming"]
keywords = ["scss", "sass", "css", "web"]

View File

@ -3,7 +3,7 @@ name = "include_sass"
version = "0.12.1"
edition = "2021"
description = "Internal implementation of the grass::include! macro"
readme = "../README.md"
readme = "../../README.md"
license = "MIT"
categories = ["web-programming"]
keywords = ["scss", "sass", "css", "web"]

View File

@ -99,7 +99,9 @@ pub fn include_sass(item: TokenStream) -> TokenStream {
let css = match grass_compiler::from_path(
value,
&options.fs(&fs).style(grass_compiler::OutputStyle::Compressed),
&options
.fs(&fs)
.style(grass_compiler::OutputStyle::Compressed),
) {
Ok(css) => css,
Err(e) => {