LAUNCH.ps1 (332B)
1 $ErrorActionPreference = "Stop" 2 3 Write-Host "[Bzl] Launcher" -ForegroundColor Cyan 4 5 Set-Location $PSScriptRoot 6 7 if (-not (Get-Command node -ErrorAction SilentlyContinue)) { throw "Missing node (Node.js 18+ required)" } 8 9 Write-Host "[Bzl] Starting (supervised)..." -ForegroundColor Yellow 10 node .\\scripts\\bzl-launch.js --supervised