nope/01-compile.bat

31 lines
672 B
Batchfile
Raw Normal View History

2020-08-25 09:03:16 +00:00
@echo off
set DIR=%~dp0
cd "%DIR%"
SETLOCAL
echo Compiling Backend
2020-09-08 08:46:52 +00:00
(npx tsc -p ./tsconfigBackend.json --pretty) && (
2020-08-25 09:03:16 +00:00
echo Generating API-Interface
@echo on
node ./dist/lib/cli/generateFiles
echo Generating API-Interface
@echo off
echo Compiling FrontendFiles
2020-09-08 08:46:52 +00:00
(npx tsc -p ./tsconfigBackend.json --pretty) && (
2020-08-25 09:03:16 +00:00
echo Done
) || (
echo Done
)
) || (
echo Generating API-Interface
@echo on
node ./dist/lib/cli/generateFiles
echo Generating API-Interface
@echo off
echo Compiling FrontendFiles
2020-09-08 08:46:52 +00:00
(npx tsc -p ./tsconfigBackend.json --pretty) && (
2020-08-25 09:03:16 +00:00
echo Done
) || (
echo Done
)
)