webui/bridge/build.sh

37 lines
934 B
Bash
Raw Normal View History

2023-08-21 02:49:31 +02:00
#!/bin/bash
2023-09-11 16:56:55 -04:00
# http://webui.me
# https://github.com/webui-dev/webui
2024-05-26 19:52:59 -04:00
# Copyright (c) 2020-2024 Hassan Draga.
2023-09-11 16:56:55 -04:00
# Licensed under MIT License.
# All rights reserved.
#
# Special Thanks to Turiiya (https://github.com/ttytm)
2023-08-21 02:49:31 +02:00
project_root=$(git rev-parse --show-toplevel)
cd $project_root/bridge
# Loop through all arguments
for opt in "$@"; do
case $opt in
--silent)
silent=true
;;
*)
echo "Invalid option: $opt"
exit 0
;;
esac
shift # Move to the next argument
done
if [ "$silent" = true ]; then log_level=--log-level=warning; fi
if [ "$silent" != true ]; then echo "Transpile and bundle TS sources to webui.js"; fi
esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --minify-syntax --minify-whitespace --outdir=. ./webui.ts $log_level
2023-08-21 02:49:31 +02:00
if [ "$silent" != true ]; then echo "Convert JS source to C header"; fi
python3 js2c.py
if [ "$silent" != true ]; then echo "Done."; fi