This repository has been archived on 2025-04-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ssg-test/run
2025-02-19 13:05:25 +00:00

36 lines
662 B
Bash
Executable file

#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
export PATH="${PATH}:./result/bin"
function clean {
rm -fr dst "${@}"
mkdir dst
}
function css-build {
tailwindcss --config assets/tailwind.config.ts \
--output src/css/tailwind.css "${@}"
}
function generate {
ssg "src" "dst" "Oliver Davies" "https://www.oliverdavies.uk"
}
function watch {
find src -type f | entr ./run generate
}
function help {
printf "%s <task> [args]\n\nTasks:\n" "${0}"
compgen -A function | grep -v "^_" | cat -n
printf "\nExtended help:\n Each task has comments for general usage\n"
}
TIMEFORMAT="Task completed in %3lR"
time "${@:-help}"