Moved build scripts into "scripts/", Updated readme

Update .gitignore, compile-clean.cmd, and 38 more files...
This commit is contained in:
2024-04-18 18:00:28 +02:00
parent e544271ffa
commit c8bf68fa2d
22 changed files with 73 additions and 25 deletions

23
scripts/nodejs-setup.cmd Normal file
View 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