From 3f7c05f3735363f54771ef743bcdacc6d2c4d021 Mon Sep 17 00:00:00 2001 From: Izuru Yakumo Date: Mon, 25 Mar 2024 23:14:25 -0300 Subject: [PATCH] Add posthook examples Signed-off-by: Izuru Yakumo --- examples/posthook-less.sh | 3 +++ examples/posthook-sass.sh | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 examples/posthook-less.sh create mode 100644 examples/posthook-sass.sh diff --git a/examples/posthook-less.sh b/examples/posthook-less.sh new file mode 100644 index 0000000..ed8bed9 --- /dev/null +++ b/examples/posthook-less.sh @@ -0,0 +1,3 @@ +#!/bin/sh +lessc < $AYA_OUTDIR/styles.less > $AYA_OUTDIR/styles.css + diff --git a/examples/posthook-sass.sh b/examples/posthook-sass.sh new file mode 100644 index 0000000..f381c6c --- /dev/null +++ b/examples/posthook-sass.sh @@ -0,0 +1,2 @@ +#!/bin/sh +sassc --style compressed $AYA_OUTDIR/styles.scss $AYA_OUTDIR/styles.css -- 2.43.0