|
|
@ -1,7 +1,5 @@ |
|
|
Clear-Host |
|
|
Clear-Host |
|
|
|
|
|
|
|
|
Write-Host "Deleting all BIN and OBJ folders..." -ForegroundColor Cyan |
|
|
Write-Host "Deleting all BIN and OBJ folders..." -ForegroundColor Cyan |
|
|
|
|
|
|
|
|
Get-ChildItem -Path . -Include bin,obj -Recurse -Directory | ForEach-Object { |
|
|
Get-ChildItem -Path . -Include bin,obj -Recurse -Directory | ForEach-Object { |
|
|
if ($_.FullName -notmatch "\\node_modules\\") { |
|
|
if ($_.FullName -notmatch "\\node_modules\\") { |
|
|
Write-Host "Deleting:" $_.FullName -ForegroundColor Yellow |
|
|
Write-Host "Deleting:" $_.FullName -ForegroundColor Yellow |
|
|
|