CSS-NibblePoker/setup.cmd
Herwin Bozet 88a40efb4e Initial commit
Update .gitignore, LICENSE-CC0, and 70 more files...
2024-11-04 22:53:06 +01:00

46 lines
625 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:setup
echo.
echo Setting up your system
echo ----------------------
:setup-npm
echo Updating NPM...
pushd %CD%
call npm update -g npm
popd
:setup-sass
echo Installing SASS...
pushd %CD%
call npm install -g sass
popd
:setup-sass-update
echo Updating SASS...
pushd %CD%
call npm update -g sass
popd
:setup-html-minify
echo Installing HTML Minifier...
pushd %CD%
call npm install -g html-minifier
popd
:setup-html-minify-update
echo Updating HTML Minifier...
pushd %CD%
call npm update -g html-minifier
popd
:setup-end
:end