webdog/.vscode/tasks.json

23 lines
411 B
JSON
Raw Normal View History

2021-08-17 09:59:34 -07:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
2021-08-18 13:49:50 -07:00
"command": "watch",
"args": ["-x", "run -- serve"],
2021-08-17 09:59:34 -07:00
"problemMatcher": ["$rustc"],
2021-08-18 13:49:50 -07:00
"label": "dev serve site",
2021-08-17 09:59:34 -07:00
"group": {
"kind": "build",
"isDefault": true
}
2021-08-18 13:49:50 -07:00
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"label": "build site"
2021-08-17 09:59:34 -07:00
}
]
}