提交快速打包脚本

This commit is contained in:
lingling 2024-08-22 15:55:30 +08:00
parent bc05112d7a
commit 9598f66619
2 changed files with 13 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,2 +1 @@
/.vscode/*
/dist/*
/dist/dist.zip

12
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "del ./dist/*;7z a -tzip ./dist/dist.zip ./* '-xr!dist/' '-xr!.vscode/' '-xr!.git/'"
}
]
}