File tree Expand file tree Collapse file tree
snap-tests-global/new-vite-monorepo-bun Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -374,8 +374,9 @@ function Main {
374374 $installLog = Join-Path $VersionDir " install.log"
375375 Push-Location $VersionDir
376376 try {
377- $env: CI = " true"
378- & " $BinDir \vp.exe" install -- silent * > $installLog
377+ # Use cmd /c so CI=true is scoped to the child process only,
378+ # avoiding leaking it into the user's shell session.
379+ cmd / c " set CI=true && `" $BinDir \vp.exe`" install --silent" * > $installLog
379380 if ($LASTEXITCODE -ne 0 ) {
380381 Write-Host " error: Failed to install dependencies. See log for details: $installLog " - ForegroundColor Red
381382 exit 1
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ website
6666 "preview": "vp preview"
6767 },
6868 "devDependencies": {
69- "typescript": "~5.9.3 ",
69+ "typescript": "~6.0.2 ",
7070 "vite": "catalog:",
7171 "vite-plus": "catalog:"
7272 }
You can’t perform that action at this time.
0 commit comments