Update maddybook

This commit is contained in:
Madison Rye Progress
2026-03-14 20:06:12 -07:00
parent 3ea7ee7d0e
commit d809e75648
3 changed files with 16 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.hugo_build.lock
public
resources/_gen

View File

@ -1,6 +1,15 @@
[build]
command = "hugo"
publish = "public"
[build.environment]
HUGO_VERSION = "0.157.0"
DART_SASS_VERSION = "1.98.0"
GO_VERSION = "1.26.1"
HUGO_VERSION = "0.157.0"
[build]
publish = "public"
command = """\
curl -sLJO "https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
tar -C "${HOME}/.local" -xf "dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
rm "dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" && \
export PATH="${HOME}/.local/dart-sass:${PATH}" && \
git config core.quotepath false && \
hugo build --gc --minify --baseURL "${URL}"
"""