zyllian.github.io/.vscode/tasks.json
2021-08-18 13:49:50 -07:00

22 lines
411 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "watch",
"args": ["-x", "run -- serve"],
"problemMatcher": ["$rustc"],
"label": "dev serve site",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"label": "build site"
}
]
}