move client to root

This commit is contained in:
MeexReay 2025-03-01 16:12:53 +03:00
parent 348a8d6ae3
commit 20ecd5dc2d
8 changed files with 0 additions and 0 deletions

15
build.sh Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
tsc
mkdir -p dest
cat dest/main.js > dest/script.js
cat dest/block.js >> dest/script.js
cat dest/network.js >> dest/script.js
cat dest/player.js >> dest/script.js
cat dest/core.js >> dest/script.js
terser dest/script.js -o dest/script.min.js --compress --mangle
rm dest/main.js
rm dest/block.js
rm dest/network.js
rm dest/player.js
rm dest/core.js