Bläddra i källkod

添加快速打包脚本

bwcx_jzy 4 år sedan
förälder
incheckning
c828072eba
2 ändrade filer med 11 tillägg och 2 borttagningar
  1. 2 2
      .gitattributes
  2. 9 0
      script/release.bat

+ 2 - 2
.gitattributes

@@ -1,4 +1,4 @@
 *       text=auto
 *.jar   binary
-*.sh    text working-tree-encoding=UTF-8 eol=lf
-*.bat   text working-tree-encoding=GBK   eol=crlf
+*.sh    text eol=lf
+*.bat   text eol=crlf

+ 9 - 0
script/release.bat

@@ -0,0 +1,9 @@
+@echo off
+
+@REM 快速打包项目脚本
+
+@REM 构建前端
+call cd ../ && cd web-vue && npm i && npm run build
+
+@REM 构建 Java
+call cd ../ && mvn clean package