hypertwist/Content/Browser/build-browser.bat
2026-06-11 17:45:34 +00:00

25 lines
588 B
Batchfile

@echo off
setlocal
REM Build HyperTwist browser runtime bundle
REM Phase 1H, 1I, 1J: bundles all JS spatial/analytics/model-viewer repos
cd /d "%~dp0"
echo Installing browser runtime dependencies...
call npm install
if errorlevel 1 (
echo npm install failed
exit /b 1
)
echo Building browser runtime bundle...
call npm run build
if errorlevel 1 (
echo Build failed
exit /b 1
)
echo Browser runtime built successfully.
echo Output: dist\browser-spatial-runtime.js
echo Authoritative shell: index.html ^(loads dist bundle when present, plain-JS fallback when absent^).