From 05cf1f2daa20fe1e786b821115b281b79837bb3e Mon Sep 17 00:00:00 2001 From: Borber Date: Tue, 26 Sep 2023 17:16:28 +0800 Subject: [PATCH] =?UTF-8?q?[add]=20=E5=8D=87=E7=BA=A7=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E5=AD=90=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/justfile b/justfile index 868c7f2..c9212e1 100644 --- a/justfile +++ b/justfile @@ -5,14 +5,23 @@ default: # 编译 CLI cd: cargo build --package seam -r + # 编译 GUI gb: cd ./crates/gui; \ yarn tauri build + # 调试 GUI gd: cd ./crates/gui; \ yarn tauri dev + # 更新 GUI 版本号 gv: @lua ./script/gui_version.lua + +# 更新 GUI 依赖 +gu: + cd ./crates/gui; \ + yarn upgrade-interactive --latest; \ + cargo update