webui/bridge/build.ps1

72 lines
2.0 KiB
PowerShell
Raw Normal View History

2024-07-11 10:10:29 -04:00
# https://webui.me
2023-09-11 16:56:55 -04:00
# https://github.com/webui-dev/webui
2025-01-30 15:52:24 -05:00
# Copyright (c) 2020-2025 Hassan Draga.
2023-09-11 16:56:55 -04:00
# Licensed under MIT License.
# All rights reserved.
2024-07-11 10:10:29 -04:00
# Canada.
2023-09-11 16:56:55 -04:00
#
# Special Thanks to Turiiya (https://github.com/ttytm)
Set-StrictMode -version latest
$ErrorActionPreference="Stop"
2023-08-21 02:49:31 +02:00
$current_location = Get-Location
$project_root = git rev-parse --show-toplevel
Set-Location $project_root/bridge
$silent=$false
$log_level=$null
2023-08-21 02:49:31 +02:00
# Arguments
2023-08-21 02:49:31 +02:00
foreach ($opt in $args) {
switch ($opt) {
"--silent" { $silent = $true }
default {
Write-Host "Invalid option: $opt"
exit
}
}
}
if ($silent) { $log_level = "--log-level=warning" }
$ErrorActionPreference="SilentlyContinue"
# Check which python command is available
$commandResult = python3 --version 2>&1 > $null
if (!$?) {
$commandResult = python --version 2>&1 > $null
if (!$?) {
Write-Host "Error: Please install Python."
Set-Location $current_location
2023-10-08 03:01:02 +02:00
exit
}
else {
$python_cmd = "python"
}
} else {
$python_cmd = "python3"
}
$ErrorActionPreference="Stop"
# Check if node_modules\esbuild exists, if not, install using npm
if (-not (Test-Path "$project_root\bridge\node_modules\esbuild")) {
if (Get-Command npm -ErrorAction SilentlyContinue) {
if (!$silent) { Write-Host "Installing esbuild..." }
2024-11-11 15:13:47 -05:00
npm install --prefix ./ esbuild
} else {
Write-Host "Error: Please install NPM."
Set-Location $current_location
exit
}
}
# Transpile WebUI-Bridge (TS to JS)
if (!$silent) { Write-Host "Transpile and bundle WebUI-Bridge from TypeScript to JavaScript..." }
.\node_modules\.bin\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
# Convert WebUI-Bridge (JS to C)
2023-10-28 19:51:02 -04:00
if (!$silent) { Write-Host "Convert WebUI-Bridge JavaScript to C Header..." }
& $python_cmd js2c.py
2023-08-21 02:49:31 +02:00
# Done
2023-08-21 02:49:31 +02:00
if (!$silent) { Write-Host "Done." }
Set-Location $current_location