Release ForgeFlow 0.6.0

This commit is contained in:
NuklearRabbit
2026-07-25 05:59:07 +02:00
parent cf1f67a823
commit 9d3933c878
48 changed files with 2208 additions and 466 deletions
+19
View File
@@ -0,0 +1,19 @@
$ErrorActionPreference = "Stop"
$project = Split-Path -Parent $MyInvocation.MyCommand.Path
Set-Location $project
$manifest = Get-Content (Join-Path $project "package.json") -Raw | ConvertFrom-Json
if ($manifest.name -ne "forgeflow" -or $manifest.version -ne "0.6.0") {
throw "This overlay is not ForgeFlow 0.6.0."
}
Write-Host "ForgeFlow 0.6.0 overlay validation" -ForegroundColor Cyan
Write-Host "Project: $project"
& npm install --no-audit --no-fund
if ($LASTEXITCODE -ne 0) { throw "npm install failed with exit code $LASTEXITCODE." }
& npm run check
if ($LASTEXITCODE -ne 0) { throw "npm run check failed with exit code $LASTEXITCODE." }
Write-Host "Starting ForgeFlow 0.6.0..." -ForegroundColor Green
& npm start