From 15adc12814594a6f2e3c15b4c1f0f402fcc3dcd0 Mon Sep 17 00:00:00 2001 From: yxt_djz Date: Wed, 8 Feb 2023 17:16:40 +0800 Subject: [PATCH] =?UTF-8?q?flowable=E5=89=8D=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supervise-flowable-ui/bin/build.bat | 12 ++++++++++++ supervise-flowable-ui/bin/package.bat | 12 ++++++++++++ supervise-flowable-ui/bin/run-web.bat | 12 ++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 supervise-flowable-ui/bin/build.bat create mode 100644 supervise-flowable-ui/bin/package.bat create mode 100644 supervise-flowable-ui/bin/run-web.bat diff --git a/supervise-flowable-ui/bin/build.bat b/supervise-flowable-ui/bin/build.bat new file mode 100644 index 00000000..4ebb9b50 --- /dev/null +++ b/supervise-flowable-ui/bin/build.bat @@ -0,0 +1,12 @@ +@echo off +echo. +echo [��Ϣ] ���Web���̣�����dist�ļ��� +echo. + +%~d0 +cd %~dp0 + +cd .. +npm run build:prod + +pause diff --git a/supervise-flowable-ui/bin/package.bat b/supervise-flowable-ui/bin/package.bat new file mode 100644 index 00000000..f26db7fb --- /dev/null +++ b/supervise-flowable-ui/bin/package.bat @@ -0,0 +1,12 @@ +@echo off +echo. +echo [��Ϣ] ��װWeb���̣�����node_modules�ļ��� +echo. + +%~d0 +cd %~dp0 + +cd .. +npm install --registry=https://registry.npm.taobao.org + +pause diff --git a/supervise-flowable-ui/bin/run-web.bat b/supervise-flowable-ui/bin/run-web.bat new file mode 100644 index 00000000..c3c222a1 --- /dev/null +++ b/supervise-flowable-ui/bin/run-web.bat @@ -0,0 +1,12 @@ +@echo off +echo. +echo [��Ϣ] ʹ�� Vue ���� Web ���̡� +echo. + +%~d0 +cd %~dp0 + +cd .. +npm run dev + +pause