2023-02-27 16:57:30 +01:00
|
|
|
#!/usr/bin/env sh
|
2021-10-22 13:13:16 +02:00
|
|
|
|
2023-02-27 16:57:30 +01:00
|
|
|
# Remove previous build leftovers
|
2022-01-16 19:32:04 +01:00
|
|
|
rm -rf ./_site
|
2022-01-16 22:02:12 +01:00
|
|
|
|
2023-02-27 16:57:30 +01:00
|
|
|
# Build, results are in ./_site
|
2023-02-26 18:47:07 +01:00
|
|
|
deno task build
|
2022-01-16 22:02:12 +01:00
|
|
|
|
2024-02-16 19:52:30 +01:00
|
|
|
# Put binary assets in place
|
2021-10-22 13:13:16 +02:00
|
|
|
cp -r ./fonts ./_site/
|
2024-02-16 19:52:30 +01:00
|
|
|
cp -r ./img ./_site/
|