8 lines
169 B
Batchfile
8 lines
169 B
Batchfile
@echo off
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
npm install || exit /b 1
|
|
npm run verify || exit /b 1
|
|
npm run build:win || exit /b 1
|
|
echo Windows artifacts are in apps\desktop\release.
|