DocSpace-client/build/rebuild.bat

27 lines
707 B
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
2019-07-16 09:48:05 +00:00
del /s /q web\npm-local
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
2019-07-16 09:48:05 +00:00
echo "ASC.Web.Storybook"
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Storybook > build\ASC.Web.Storybook.log
2019-07-16 09:48:05 +00:00
echo "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"
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