Skip to content

Commit

Permalink
🔨 chore: cleanup uncommented parts
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquindev committed Dec 8, 2024
1 parent 9cae7f3 commit c294f5d
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions Setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -206,25 +206,6 @@ function Install {
}

# NodeJS setup
# if (Get-Command nvm -ErrorAction SilentlyContinue) {
# Write-PrettyTitle "NVM (Node Version Manager)"
# if (!(Get-Command npm -ErrorAction SilentlyContinue)) {
# $ltsOrLatest = $(Write-Host "❔ NodeJS not found. Install LTS (y) or latest (n)? "-ForegroundColor Cyan -NoNewline; Read-Host)
# if ($ltsOrLatest -eq 'y') {
# nvm install lts
# nvm use lts
# npm install -g npm@latest
# } else {
# nvm install latest
# nvm use latest
# npm install -g npm@latest
# }
# corepack enable
# npm config set userconfig="$env:USERPROFILE\.config\npm\.npmrc" --global
# }
# Install-NPM-Packages -List $npmGlobalPackages
# }

Write-PrettyTitle "NVM (Node Version Manager)"
if (-not (Get-Command nvm -ErrorAction SilentlyContinue)) {
# Installing nvm using the installer
Expand Down

0 comments on commit c294f5d

Please sign in to comment.