Files
Horizon-OC/pages/build.sh
2023-02-12 23:55:54 +08:00

15 lines
308 B
Bash
Executable File

#!/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