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>
14 lines
210 B
Makefile
14 lines
210 B
Makefile
|
|
all: build
|
|
|
|
build: theme.css
|
|
|
|
%.css: %.scss
|
|
cd .. \
|
|
&& npx sass --no-error-css --no-source-map --style=expanded .marp/$<:.marp/$@ \
|
|
|| ( rm -f .marp/$@ && exit 1 )
|
|
|
|
.PHONY: build
|
|
|
|
clean:
|
|
rm -f theme.css
|