docs/.vscode/tasks.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2024-03-29 21:44:51 +02:00
{
// 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": []
}
]
}