Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/install-dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ npm install
npm link
Pop-Location

Write-Output "`nInstalling GUI extension dependencies..." -ForegroundColor White
Write-Host "`nInstalling GUI extension dependencies..." -ForegroundColor White
Push-Location gui
npm install
npm link @continuedev/core
npm run build
Pop-Location

# VSCode Extension (will also package GUI)
Write-Output "`nInstalling VSCode extension dependencies..." -ForegroundColor White
Write-Host "`nInstalling VSCode extension dependencies..." -ForegroundColor White
Push-Location extensions/vscode

# This does way too many things inline but is the common denominator between many of the scripts
Expand All @@ -105,15 +105,15 @@ npm run package
Pop-Location


Write-Output "`nInstalling binary dependencies..." -ForegroundColor White
Write-Host "`nInstalling binary dependencies..." -ForegroundColor White
Push-Location binary

npm install
npm run build

Pop-Location

Write-Output "`nInstalling docs dependencies..." -ForegroundColor White
Write-Host "`nInstalling docs dependencies..." -ForegroundColor White
Push-Location docs

npm install
Expand Down
Loading