DocSpace-client/build/build.bat

29 lines
1.0 KiB
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
call yarn link --cwd packages/asc-web-components
echo "ASC.Web.Storybook"
call yarn link "asc-web-components" --cwd web/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"
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-06-07 14:34:51 +00:00
pause