The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-livechat/plugin/build.bat

21 lines
549 B

@echo off
SET NODE_ENV="production"
cd packages/rocketchat-livechat/.app
call meteor npm install --production
call meteor build --headless --directory .meteor/build/
SET LIVECHAT_DIR="../../../public/livechat"
SET BUILD_DIR=".meteor/build/bundle/programs/web.browser"
mkdir ..\public
del /q /s ..\public\*
rmdir /q /s %LIVECHAT_DIR%
mkdir %LIVECHAT_DIR%
xcopy /y %BUILD_DIR%\*.css %LIVECHAT_DIR%\livechat.css*
xcopy /y %BUILD_DIR%\*.js %LIVECHAT_DIR%\livechat.js*
xcopy /y %BUILD_DIR%\head.html ..\public\head.html*
rmdir /s /q .meteor\build\