chs/Makefile.toml

14 lines
245 B
TOML
Raw Normal View History

2022-10-31 13:25:32 +00:00
[tasks.build-ui]
command = "pnpm"
args = ["build"]
[tasks.build-release]
command = "cargo"
args = ["build", "--release"]
dependencies = ["build-ui"]
[tasks.run-release]
command = "cargo"
args = ["run", "--release"]
dependencies = ["build-ui"]