From a8b755a7c97599ded6df5b09f94867569c4717a2 Mon Sep 17 00:00:00 2001
From: "Glenn Y. Rolland" <glenux@glenux.net>
Date: Tue, 18 Mar 2025 14:23:34 +0100
Subject: [PATCH] chore(makefile): enhance CSS build output readability

Improved the readability of the generated CSS files by expanding their
style format. This change aids in debugging and maintenance by providing
a clearer view of the CSS structure.

* Added `--style=expanded` option to the `npx sass` command in the
  Makefile
* Ensures that the generated CSS is more human-readable, facilitating
  easier troubleshooting and updates

Signed-off-by: Glenn Y. Rolland <glenux@glenux.net>
---
 .marp/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.marp/Makefile b/.marp/Makefile
index 3d851cf..04b1725 100644
--- a/.marp/Makefile
+++ b/.marp/Makefile
@@ -5,7 +5,7 @@ build: theme.css
 
 %.css: %.scss
 	cd .. \
-		&& npx sass --no-error-css --no-source-map .marp/$<:.marp/$@ \
+		&& npx sass --no-error-css --no-source-map --style=expanded .marp/$<:.marp/$@ \
 		|| ( rm -f .marp/$@ && exit 1 )
 
 .PHONY: build