@echo off cd DOC-dt echo ================= echo == Building DT == echo ================= call yarn push if errorlevel 1 ( echo: echo An error occurred during the yarn push on DOC-DT. Build process interrupted! cd .. exit /b 1 ) cd .. echo: echo ================== echo == Building WCN == echo ================== cd DOC-wcn call yarn serve if errorlevel 1 ( echo: echo An error occurred during the yarn serve on DOC-WCN. Build process interrupted! cd .. exit /b 1 ) cd .. echo: echo == Core build successful! ==