Moved build scripts into "scripts/", Updated readme
Update .gitignore, compile-clean.cmd, and 38 more files...
This commit is contained in:
23
scripts/nodejs-setup.cmd
Normal file
23
scripts/nodejs-setup.cmd
Normal file
@@ -0,0 +1,23 @@
|
||||
@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
|
Reference in New Issue
Block a user