19 lines
618 B
Batchfile
19 lines
618 B
Batchfile
@echo off
|
|
REM ================================================================
|
|
REM PLANTPLAN - Node.js Packages fuer Client installieren
|
|
REM ================================================================
|
|
REM Fuehrt npm install im client/ Verzeichnis aus
|
|
REM ================================================================
|
|
|
|
call "%~dp0setenv.bat"
|
|
|
|
if not exist "%PV_CLIENT%\node_modules" (
|
|
echo Installiere Node.js Packages fuer Client...
|
|
cd /d "%PV_CLIENT%"
|
|
npm install
|
|
echo Erfolgreich.
|
|
) else (
|
|
echo Node.js Packages bereits installiert!
|
|
echo Zum Aktualisieren: cd client ^& npm install
|
|
)
|