From c294f5d1b724971cff6d4e831861135b576dc943 Mon Sep 17 00:00:00 2001 From: Jacquin Moon Date: Sun, 8 Dec 2024 12:11:12 +0700 Subject: [PATCH] :hammer: chore: cleanup uncommented parts --- Setup.ps1 | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Setup.ps1 b/Setup.ps1 index e519150..c082f20 100644 --- a/Setup.ps1 +++ b/Setup.ps1 @@ -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