DocSpace-client/build/rebuild.bat

39 lines
1.5 KiB
Batchfile
Raw Normal View History

2019-07-16 09:48:05 +00:00
PUSHD %~dp0
call start\stop.bat
PUSHD %~dp0..
2019-07-17 13:46:08 +00:00
del /s /q packages\asc-web-components
del /s /q packages\asc-web-common
2019-07-16 09:48:05 +00:00
echo "ASC.Web.Components"
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Components > build\ASC.Web.Components.log
REM xcopy web\ASC.Web.Components\node_modules packages\asc-web-components\node_modules\ /E /R /Y >> build\ASC.Web.Components.log
call yarn install --cwd packages/asc-web-components >> build\ASC.Web.Components.log
call yarn link --cwd packages/asc-web-components
2019-07-16 09:48:05 +00:00
echo "ASC.Web.Common"
call yarn link "asc-web-components" --cwd web/ASC.Web.Common
call yarn install --cwd web/ASC.Web.Common > build\ASC.Web.Common.log
REM xcopy web\ASC.Web.Common\node_modules packages\asc-web-common\node_modules\ /E /R /Y >> build\ASC.Web.Components.log
call yarn install --cwd packages/asc-web-common >> build\ASC.Web.Common.log
call yarn link --cwd packages/asc-web-common
2019-07-16 09:48:05 +00:00
echo "ASC.Web.Client"
call yarn link "asc-web-components" --cwd web/ASC.Web.Client
call yarn link "asc-web-common" --cwd web/ASC.Web.Client
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Client > build\ASC.Web.Client.log
2019-07-16 09:48:05 +00:00
echo "ASC.Web.People.Client"
call yarn link "asc-web-components" --cwd products/ASC.People/Client
call yarn link "asc-web-common" --cwd products/ASC.People/Client
2019-07-17 13:46:08 +00:00
call yarn install --cwd products/ASC.People/Client > build\ASC.Web.People.Client.log
2019-07-16 09:48:05 +00:00
xcopy build\cra\*.* products\ASC.People\Client\node_modules\ /E /R /Y
echo "ASC.Web.sln"
call dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
2019-07-17 13:46:08 +00:00
start /b call build\start\start.bat
2019-07-16 09:48:05 +00:00
pause