ytcd/.vscode/tasks.json
defaultkavy e4a80e06ff v1.0.6
fix: copy/paste button error/done state class name switch
add: flex properties: flex-direction, justify-content, align-items, gap
fix: border witdh/color/style data error
2024-04-02 08:28:00 +08:00

33 lines
552 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "server",
"type": "shell",
"command": "${workspaceFolder}/scripts/server.sh"
},
{
"label": "vite",
"type": "shell",
"command": "${workspaceFolder}/scripts/vite.sh",
"problemMatcher": []
},
{
"label": "caddy",
"type": "npm",
"script": "caddy-dev"
},
{
"label": "vite-build",
"type": "shell",
"command": "${workspaceFolder}/scripts/vite-build.sh"
},
{
"label": "dev-startup",
"dependsOn": [
"vite"
],
"problemMatcher": []
}
]
}