build(client-web): 🚀 Update client build script

Build client script with uploading package to server
This commit is contained in:
pakintada@gmail.com 2024-03-14 14:50:45 +07:00
parent 47357e7ab4
commit 37c182729b
5 changed files with 27 additions and 8 deletions

11
build_client.sh Normal file
View file

@ -0,0 +1,11 @@
# build
echo "building client web ..."
cd client
npm run build
# send zipped
cd ./dist
echo "packing and uploading ..."
./send_package.sh
cd ../..