Files
planilla/.vscode/tasks.json
2025-06-11 23:10:00 -06:00

60 lines
1.3 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "planilla-api",
"type": "shell",
"command": "make api",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-mcp",
"type": "shell",
"command": "make mcp",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-ui",
"type": "shell",
"command": "make UI",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-agent",
"type": "shell",
"command": "make agent",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-dev",
"dependsOn": [
"planilla-api",
"planilla-mcp",
"planilla-ui",
"planilla-agent"
],
"dependsOrder": "parallel",
"problemMatcher": [],
"presentation": {
"reveal": "always"
}
}
]
}