Skip to content

Commit

Permalink
build(make): streamline commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Zageron committed Oct 8, 2022
1 parent b9af7fe commit aae7f58
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions makefile.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
[tasks.docs]
workspace = false
clear = true
command = "cargo"
args = ["doc", "--all-features", "--no-deps", "--workspace"]

[tasks.build_wasm]
[tasks.wasm]
workspace = false
clear = true
command = "cargo"
args = ["make", "--cwd", "crates/rrr_wasm", "build"]

[tasks.build_release]
[tasks.release]
workspace = false
extend = "build"
args = ["build", "--release"]
clear = true
command = "cargo"
args = ["build", "--release", "--bins"]

[tasks.build]
workspace = false
clear = true
command = "cargo"
args = ["build", "--bins"]

[tasks.install]
workspace = false
Expand Down

0 comments on commit aae7f58

Please sign in to comment.