1
0
jcktrue.dk/.vscode/tasks.json

37 lines
894 B
JSON
Raw Normal View History

2020-08-23 17:50:08 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "server",
"type": "process",
"command": "hugo",
"args": [
"server"
],
"isBackground": true,
"problemMatcher": {
"severity": "error",
"fileLocation": "absolute",
"owner": "hugo",
"pattern": {
"regexp": "template: (.*):(\\d+): (.*)",
"file": 1,
"location": 2,
"message": 3,
"loop": true
},
"background": {
"activeOnStart": true,
"beginsPattern": "Change detected, rebuilding site",
"endsPattern": "Total in \\d+ ms"
}
},
"group": {
"kind": "test",
"isDefault": true
}
}
]
}