45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Build",
|
||
|
"type": "shell",
|
||
|
"windows": {
|
||
|
"command": ".venv\\Scripts\\mkdocs.exe",
|
||
|
"args": [
|
||
|
"build"
|
||
|
]
|
||
|
},
|
||
|
"linux": {
|
||
|
"command": ".venv/bin/mkdocs",
|
||
|
"args": [
|
||
|
"build"
|
||
|
]
|
||
|
},
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "Serve",
|
||
|
"type": "shell",
|
||
|
"windows": {
|
||
|
"command": ".venv\\Scripts\\mkdocs.exe",
|
||
|
"args": [
|
||
|
"serve"
|
||
|
]
|
||
|
},
|
||
|
"linux": {
|
||
|
"command": ".venv/bin/mkdocs",
|
||
|
"args": [
|
||
|
"serve"
|
||
|
]
|
||
|
},
|
||
|
"problemMatcher": []
|
||
|
}
|
||
|
]
|
||
|
}
|