build-exe.ps1 130 B

12345678910
  1. $ErrorActionPreference = "Stop"
  2. Push-Location "$PSScriptRoot\.."
  3. try {
  4. npm install
  5. npm run dist
  6. }
  7. finally {
  8. Pop-Location
  9. }