feat: versión inicial de GLM Hub

This commit is contained in:
2026-07-29 12:17:56 -04:00
commit 1c3d534322
43 changed files with 10381 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
$ErrorActionPreference = "Stop"
$projectRoot = [System.IO.Path]::GetFullPath((Split-Path -Parent $PSScriptRoot))
Push-Location $projectRoot
try {
& npm run typecheck
if ($LASTEXITCODE -ne 0) {
throw "TypeScript encontró errores."
}
& npm exec vite build
if ($LASTEXITCODE -ne 0) {
throw "Vite no pudo compilar la aplicación."
}
Write-Host "GLM Hub compilado en $(Join-Path $projectRoot 'dist')"
}
finally {
Pop-Location
}