Fix: Installers use --legacy-peer-deps to resolve Ink conflict

This commit is contained in:
Gemini AI
2025-12-14 01:03:50 +04:00
Unverified
parent edfb8628c2
commit fe417afbe2
4 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ Set-Location $targetDir
if (!(Test-Path "node_modules")) {
Write-Host "Installing dependencies..." -ForegroundColor Yellow
npm install
npm install --legacy-peer-deps
} else {
Write-Host "Dependencies already installed." -ForegroundColor Green
}