mirror of
https://github.com/lmg-anon/mikupad.git
synced 2026-08-16 03:54:32 +00:00
20 lines
No EOL
342 B
Batchfile
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 .. |