Files
website/.vscode/tasks.json
Jon Lockwood 0c3a878cfa fix(vscode): don't force mkdocs strict
This will enable the project to build and display the warnings to be fixed.

MR !7
2022-01-31 08:21:46 +09:30

22 lines
584 B
JSON

{
"version": "2.0.0",
"command": "bash",
"showOutput": "always",
"args": [
"-c"
],
"tasks": [
{
"suppressTaskName": true,
"args": [
"cd ${workspaceFolder}; . dev_env/bin/activate; pip install -r gitlab-ci/mkdocs/requirements.txt; pip install -r requirements.txt; mkdocs build --clean"
],
"problemMatcher": [],
"label": "MKDocs Build Static Site",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}