mikupad/compile.bat
2023-10-28 21:50:45 -03:00

20 lines
No EOL
342 B
Batchfile

@echo off
where node >nul 2>&1
if %errorlevel% neq 0 (
echo Node.js is not installed.
exit /b 1
)
where npm >nul 2>&1
if %errorlevel% neq 0 (
echo npm is not installed.
exit /b 1
)
xcopy /y mikupad.html project >NUL
cd project
call npm install
call npm start build
copy /y .\dist\mikupad.html ..\mikupad_compiled.html
cd ..