This reverts commit 76ac2d9219, reversing
changes made to dfbb341fa0.
This commit is contained in:
souldbminersmwc
2025-08-28 07:33:58 -04:00
parent 17b56f1ed3
commit 9b3e90680f
7 changed files with 1952 additions and 2 deletions

15
pages/build.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
[ -d "./tmp" ] || mkdir ./tmp
[ -d "./dist" ] || mkdir ./dist
# README_HTML=`pandoc -f gfm -t html5 ../README.md`
cp -Rf ./src/*.html ./tmp/
tsc ./src/main.ts --outDir ./tmp/ -lib es2019,dom -t es2015
for FILE in ./tmp/*; do
minify "${FILE}" > "./dist/${FILE/.\/tmp\/}"
done
rm -fr ./tmp