From a34b05af8fb75eef57bde6a3f296951638975c57 Mon Sep 17 00:00:00 2001 From: Irvin Steve Cardenas Date: Sat, 19 Jun 2021 14:23:02 -0400 Subject: [PATCH] Create deploy script for Windows (#62) --- js/deploy-web.bat | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 js/deploy-web.bat diff --git a/js/deploy-web.bat b/js/deploy-web.bat new file mode 100644 index 0000000..03ea552 --- /dev/null +++ b/js/deploy-web.bat @@ -0,0 +1,13 @@ +ECHO "Starting to deploy 'web', bootstrapping..." +yarn bootstrap +ECHO "Preparing 'common'..." +CD packages\common +yarn prepare +yarn build-css +CD ..\web +ECHO "Prestarting 'web'..." +yarn prestart +ECHO "Building 'web'..." +# TODO: fix linting errors! +SET CI=false && yarn build +ECHO "#done"