fixing installer and compiler

This commit is contained in:
Martin Karkowski 2021-01-21 16:25:43 +01:00
parent 5ab747bd51
commit 76698ed3e3
2 changed files with 4 additions and 23 deletions

View File

@ -2,4 +2,5 @@ set DIR=%~dp0
cd "%DIR%" cd "%DIR%"
npm install npm install
@REM Link the Package. This results in making the binaries available. @REM Link the Package. This results in making the binaries available.
call ./01-compile.bat
npm link npm link

View File

@ -4,27 +4,7 @@ cd "%DIR%"
SETLOCAL SETLOCAL
echo Compiling Backend echo Compiling Backend
(npx tsc -p ./tsconfigBackend.json --pretty) && ( (npx tsc -p ./tsconfigBackend.json --pretty) && (
echo Generating API-Interface echo Done
@echo on
node ./dist/lib/cli/generateFiles
echo Generating API-Interface
@echo off
echo Compiling FrontendFiles
(npx tsc -p ./tsconfigBackend.json --pretty) && (
echo Done
) || (
echo Done
)
) || ( ) || (
echo Generating API-Interface echo Done
@echo on )
node ./dist/lib/cli/generateFiles
echo Generating API-Interface
@echo off
echo Compiling FrontendFiles
(npx tsc -p ./tsconfigBackend.json --pretty) && (
echo Done
) || (
echo Done
)
)