mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
27 lines
675 B
JSON
27 lines
675 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Dub Build",
|
||
|
"type": "shell",
|
||
|
"command": "dub build",
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "Dub Test",
|
||
|
"type": "shell",
|
||
|
"command": "dub test",
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "test",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|