Skip to content

Commit

Permalink
[add] 升级依赖子命令
Browse files Browse the repository at this point in the history
  • Loading branch information
Borber committed Sep 26, 2023
1 parent e26e758 commit 05cf1f2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 05cf1f2

Please sign in to comment.