mirror of
https://github.com/kjuulh/bitebuds.git
synced 2024-11-08 11:01:47 +01:00
25 lines
473 B
TOML
25 lines
473 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",
|
|
]
|
|
|
|
[tasks.build_tailwind]
|
|
command = "npx"
|
|
args = ["tailwindcss", "-i", "./input.css", "-o", "./style/output.css"]
|