You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
442 B
14 lines
442 B
@setlocal |
|
@call node\nodevars.bat |
|
@REM Aufräumen der distributions-Verzeichnisse: |
|
@del /Q /F webdata\dist\app*.js webdata\dist\style*.js webdata\dist\main.html |
|
|
|
@REM Ausführen von webpack zum Bündeln: |
|
@call .\node_modules\.bin\webpack |
|
@set WEBPACK_ERR=%ERRORLEVEL% |
|
|
|
@REM Kopieren der index.html ins webdata-Verzeichnis, damit die Hauptanwendung |
|
@REM die index.html findet: |
|
@copy webdata\dist\index.html webdata\ |
|
|
|
cmd /c exit %WEBPACK_ERR%
|
|
|