mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
41 lines
756 B
JSON
41 lines
756 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "npm",
|
||
|
"script": "lint",
|
||
|
"problemMatcher": [
|
||
|
"$eslint-stylish"
|
||
|
],
|
||
|
"label": "npm: lint",
|
||
|
"detail": "eslint frontend cypress --ext .js,.jsx,.ts,.tsx"
|
||
|
},
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"label": "Docker Compose Dependencies",
|
||
|
"command": "docker-compose up",
|
||
|
"isBackground": true,
|
||
|
"presentation": {
|
||
|
"panel": "dedicated"
|
||
|
},
|
||
|
"runOptions": {
|
||
|
"instanceLimit": 1,
|
||
|
"runOn": "folderOpen"
|
||
|
},
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"type": "shell",
|
||
|
"label": "Make generate-dev",
|
||
|
"command": "make generate-dev",
|
||
|
"isBackground": true,
|
||
|
"presentation": {
|
||
|
"panel": "dedicated"
|
||
|
},
|
||
|
"runOptions": {
|
||
|
"instanceLimit": 1,
|
||
|
"runOn": "folderOpen"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|