DocSpace-client/build/build.bat

24 lines
776 B
Batchfile
Raw Normal View History

PUSHD %~dp0
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
echo "ASC.Web.Storybook"
2019-07-17 13:46:08 +00:00
call yarn install --cwd web/ASC.Web.Storybook --frozen-lockfile > build\ASC.Web.Storybook.log
2019-07-05 08:55:44 +00:00
2019-07-09 12:12:39 +00:00
echo "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"
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-06-07 14:34:51 +00:00
pause