aboutsummaryrefslogtreecommitdiff
path: root/installer/npm_install.cmd
blob: ecb09dab82c845453a196bad28f6e544b32bd4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off

if "x%1" equ "x" goto :EOF
if "x%2" equ "x" goto :EOF

set server_dir=..\servers\%1
if exist "%server_dir%" rd /Q /S "%server_dir%"
md "%server_dir%"
cd /d "%server_dir%"

call npm init -y

echo {"name":""}>package.json

call npm install "%2"

echo @echo off ^

call %%~dp0\node_modules\.bin\%1.cmd %%* ^

> %1.cmd