mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-01-18 03:32:30 -08:00
22 lines
411 B
JSON
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"
|
|
}
|
|
]
|
|
}
|