lapce-elixir/Makefile.toml

35 lines
490 B
Makefile
Raw Normal View History

[tasks.default]
clear = true
dependencies = [
"fmt",
"check",
"clippy",
"release",
]
[tasks.fmt]
2022-08-29 10:02:22 +12:00
command = "cargo"
args = ["fmt"]
[tasks.release]
2022-08-29 10:02:22 +12:00
dependencies = ["build-release"]
[tasks.dev]
2022-08-29 10:02:22 +12:00
dependencies = ["build-dev"]
[tasks.check]
2022-08-29 10:02:22 +12:00
command = "cargo"
args = ["check"]
[tasks.clippy]
2022-08-29 10:02:22 +12:00
command = "cargo"
args = ["clippy"]
[tasks.build-dev]
2022-08-29 10:02:22 +12:00
command = "cargo"
args = ["install", "--path", ".", "--debug"]
[tasks.build-release]
2022-08-29 10:02:22 +12:00
command = "cargo"
args = ["install", "--path", "."]