DocSpace-buildtools/build/build.bat

29 lines
896 B
Batchfile
Raw Normal View History

PUSHD %~dp0
2019-09-03 11:12:19 +00:00
call runasadmin.bat "%~dpnx0"
if %errorlevel% == 0 (
call start\stop.bat
2019-07-10 16:00:37 +00:00
PUSHD %~dp0..
echo "ASC.Web.Components"
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Components --frozen-lockfile > build\ASC.Web.Components.log
call yarn link --cwd packages/asc-web-components
2019-07-09 12:12:39 +00:00
echo "ASC.Web.Client"
call yarn link "asc-web-components" --cwd web/ASC.Web.Client
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Client --frozen-lockfile > build\ASC.Web.Client.log
2019-07-09 12:12:39 +00:00
echo "ASC.Web.People.Client"
call yarn link "asc-web-components" --cwd products/ASC.People/Client
2019-07-17 13:46:08 +00:00
call yarn install --cwd products/ASC.People/Client --frozen-lockfile > build\ASC.Web.People.Client.log
xcopy build\cra\*.* products\ASC.People\Client\node_modules\ /E /R /Y
echo "ASC.Web.sln"
2019-06-07 14:34:51 +00:00
call dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
start /b call build\start\start.bat
2019-09-03 11:12:19 +00:00
pause
)