13 lines
189 B
TOML
13 lines
189 B
TOML
|
[tasks.create]
|
||
|
dependencies = ["run", "format"]
|
||
|
|
||
|
[tasks.format]
|
||
|
private = true
|
||
|
command = "prettier"
|
||
|
args = ["-w", "index.html"]
|
||
|
|
||
|
[tasks.run]
|
||
|
private = true
|
||
|
command = "cargo"
|
||
|
args = ["run"]
|