control-center/.vscode/tasks.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2022-09-20 16:17:46 +00:00
{
// 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": []
}
]
}