Files
Web-NibblePoker/scripts/nodejs-setup.cmd
Herwin c8bf68fa2d Moved build scripts into "scripts/", Updated readme
Update .gitignore, compile-clean.cmd, and 38 more files...
2024-04-18 18:00:28 +02:00

24 lines
261 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:nodejs
echo.
echo Setting up NodeJS...
echo --------------------
:nodejs-install
echo Installing packages...
pushd %CD%
call npm install
popd
:nodejs-end
:end