Skip to content

Commit

Permalink
Update tasks.json to add docs commands
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Feb 22, 2022
1 parent 4a74546 commit f0a0c99
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,32 @@
"args": [],
"problemMatcher": [],
},
{
"label": "Docs: Install python plugins from requirements.txt file",
"type": "shell",
"command": "python -m pip install -r requirements.txt",
"options": {
"cwd": "${workspaceFolder}/docs"
},
"problemMatcher": []
},
{
"label": "Docs: Generate html",
"type": "shell",
"command": ".\\make html",
"options": {
"cwd": "${workspaceFolder}/docs"
},
"problemMatcher": []
},
{
"label": "Docs: Clean build directory",
"type": "shell",
"command": ".\\make clean",
"options": {
"cwd": "${workspaceFolder}/docs"
},
"problemMatcher": []
},
]
}

0 comments on commit f0a0c99

Please sign in to comment.