diff --git a/web/source/build.bat b/web/source/build.bat index 5e31ad4bd2..70c8c4554d 100644 --- a/web/source/build.bat +++ b/web/source/build.bat @@ -182,7 +182,7 @@ endlocal del %EMBED_OUTPUT%\keyman.js 2>nul CALL %compilecmd% -p %NODE_SOURCE%\tsconfig.embedded.json -echo Typescript compiled. +echo Embedded TypeScript compiled. CALL :minify "keyman.js" %EMBED_OUTPUT% SIMPLE_OPTIMIZATIONS "keyman.__BUILD__=%BUILD%" if not exist %EMBED_OUTPUT%\keyman.js goto fail @@ -208,7 +208,7 @@ echo Compile Keymanweb... del %WEB_OUTPUT%\keymanweb.js 2>nul CALL %compilecmd% -p %NODE_SOURCE%\tsconfig.web.json || true -echo Typescript compiled. +echo Native TypeScript compiled. call :copy_resources %INTERMEDIATE% diff --git a/web/source/build.sh b/web/source/build.sh index 84b54cc666..68f71720e6 100755 --- a/web/source/build.sh +++ b/web/source/build.sh @@ -207,7 +207,7 @@ if [ $BUILD_EMBED = true ]; then rm $EMBED_OUTPUT/keyman.js 2>/dev/null $compilecmd -p $NODE_SOURCE/tsconfig.embedded.json - echo Typescript compiled. + echo Embedded TypeScript compiled. minify keyman.js $EMBED_OUTPUT SIMPLE_OPTIMIZATIONS "keyman.__BUILD__=$BUILD" assert $EMBED_OUTPUT/keyman.js @@ -231,7 +231,7 @@ if [ $BUILD_COREWEB = true ]; then echo Compile Keymanweb... rm $WEB_OUTPUT/keymanweb.js 2>/dev/null $compilecmd -p $NODE_SOURCE/tsconfig.web.json - echo Typescript compiled. + echo Native TypeScript compiled. copy_resources "$INTERMEDIATE"