From 3b5ef5f632a2b7e68ed384edbe2ffbfa9c2b1060 Mon Sep 17 00:00:00 2001 From: Tilen Majerle Date: Tue, 22 Feb 2022 22:04:35 +0100 Subject: [PATCH] Update tasks.json to add docs commands --- .vscode/tasks.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a4527df..4a5e5eb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": [] + }, ] } \ No newline at end of file