nix-hamburg.astro.nix/.vscode/tasks.json

18 lines
473 B
JSON
Raw Permalink Normal View History

2023-04-07 16:32:36 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "watch tests",
"type": "shell",
"command": "watch --color 'nix-build test --no-out-link | xargs cat'",
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false
},
"problemMatcher": []
}
]
}