Files
sugar-cube-client/.vscode/tasks.json
2018-11-01 23:23:05 +01:00

37 lines
716 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"command": "robo clean",
"label": "robo : clean",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo doc",
"label": "robo : doc",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo lint",
"label": "robo : lint",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo test",
"group": {"isDefault": true, "kind": "build"},
"label": "robo : test",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo upgrade",
"label": "robo : upgrade",
"problemMatcher": [],
"type": "shell"
}
]
}