control-center/.vscode/tasks.json
2022-09-20 19:17:46 +03:00

42 lines
1.0 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Libs",
"type": "shell",
"command": "npm run dev-libs",
"presentation": {
"group": "stage"
}
},
{
"label": "Stage",
"type": "shell",
"command": "sleep 0.5 && npm run stage",
"presentation": {
"group": "stage"
}
},
{
"label": "Dev",
"type": "shell",
"command": "sleep 0.5 && npm run dev",
"presentation": {
"group": "stage"
}
},
{
"label": "Start stage & libs",
"dependsOn": ["Libs", "Stage"],
"problemMatcher": []
},
{
"label": "Start dev & libs",
"dependsOn": ["Libs", "Dev"],
"problemMatcher": []
}
]
}