11 Zeilen
239 B
Batchfile
11 Zeilen
239 B
Batchfile
@echo off
|
|
echo Building Metadaten-Crawler...
|
|
echo.
|
|
echo Installing dependencies...
|
|
call npm install
|
|
echo.
|
|
echo Creating Windows executable...
|
|
call npm run build-win
|
|
echo.
|
|
echo Build complete! Check the dist folder for the executable.
|
|
pause |