7 lines
101 B
PowerShell
7 lines
101 B
PowerShell
#!/usr/bin/env pwsh
|
|
Push-Location $PSScriptRoot
|
|
|
|
remove-item .\dist -Recurse -Force
|
|
tsc
|
|
|
|
Pop-Location |