添加快速打包脚本

This commit is contained in:
bwcx_jzy 2021-09-19 21:15:35 +08:00
parent e1198917e3
commit c828072eba
2 changed files with 11 additions and 2 deletions

4
.gitattributes vendored
View File

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

9
script/release.bat Normal file
View File

@ -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