2022-08-11 13:01:30 +08:00
|
|
|
echo "building $1"
|
|
|
|
|
|
|
|
rm -rf target
|
|
|
|
mkdir target
|
|
|
|
|
2022-10-17 14:22:48 +08:00
|
|
|
# cp ui/index.html target/index.html
|
|
|
|
# deno bundle ui/bind.ts target/bind.js
|
2022-08-11 13:01:30 +08:00
|
|
|
|
2022-10-17 14:22:48 +08:00
|
|
|
mkdir target/cast
|
|
|
|
cp ui/cast/index.html target/cast/index.html
|
|
|
|
cp ui/cast/*.webp target/cast/
|
|
|
|
deno bundle ui/cast/bind.ts target/cast/bind.js
|