Files
Web-NibblePoker/compile.bat
Herwin b0fbd2199f Removed static content index, Added independant base files for content system's index
Update compile-content.cmd, compile.bat, and 11 more files...
2024-01-08 11:55:17 +01:00

16 lines
315 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:: Running sub-scripts
call "%~dp0compile-clean.cmd"
call "%~dp0compile-strings.cmd"
call "%~dp0compile-content.cmd"
call "%~dp0compile-sass.cmd"
call "%~dp0compile-js-site.cmd"
call "%~dp0compile-js-external.cmd"
:end