drawio-export/.vscode/tasks.json
Алексей Бадяев 0d6f42f425
All checks were successful
drawio-export/pipeline/head This commit looks good
Добавлена функция Diagrams() с тестами.
2023-04-08 22:04:55 +07:00

34 lines
839 B
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",
"command": "make build",
"group": "build"
},
{
"label": "test",
"type": "shell",
"command": "make test",
"group": "test"
},
{
"label": "coverage",
"type": "shell",
"command": "make coverage",
"group": "test",
"options": {
"env": { "EXPORT_RESULT": "true" }
}
},
{
"label": "clean",
"type": "shell",
"command": "make clean",
"group": "build"
}
]
}