mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
42 lines
1.0 KiB
JSON
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": []
|
|
}
|
|
]
|
|
}
|