pdca0-dev-hub/cmd/pdca0-update-npm.ps1

11 lines
282 B
PowerShell

# Avvia la UI di configurazione PDCA0
$scriptPath = Resolve-Path (Join-Path $PSScriptRoot '../src/darwin/frontend/ui-update-npm-versions.ps1')
if (Test-Path $scriptPath) {
& $scriptPath
} else {
Write-Host "File non trovato: $scriptPath" -ForegroundColor Red
exit 1
}