bitebuds/Makefile.toml
2023-03-07 23:20:06 +01:00

38 lines
727 B
TOML

[tasks.build]
command = "cargo"
args = ["+nightly", "build-all-features"]
install_crate = "cargo-all-features"
[tasks.check]
command = "cargo"
args = ["+nightly", "check-all-features"]
install_crate = "cargo-all-features"
[tasks.watch_tailwind]
command = "npx"
args = [
"tailwindcss",
"-i",
"./input.css",
"-o",
"./style/output.css",
"--watch",
]
workspace = false
[tasks.build_tailwind]
command = "npx"
args = ["tailwindcss", "-i", "./input.css", "-o", "./style/output.css"]
workspace = false
[tasks.install_biteme]
command = "cargo"
args = ["install", "--path", "crates/biteme"]
workspace = false
install_crate = "cargo-all-features"
[tasks.ci]
command = "cargo"
args = ["run", "-p", "ci"]
workspace = false