1
protomask/.vscode/tasks.json

41 lines
587 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"args": [
"--workspace"
],
"problemMatcher": [
"$rustc",
"$rust-panic"
],
"group": "build",
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "test",
"args": [
"--workspace"
],
"problemMatcher": [
"$rustc",
"$rust-panic"
],
"group": "test",
"label": "rust: cargo test"
},
{
"type": "shell",
"command": "zola",
"args": [
"-r",
"docs/website",
"serve"
],
"label": "zola: serve website"
}
]
}