decky-plugin-template/.vscode/tasks.json

43 lines
1 KiB
JSON

{
"version": "2.0.0",
"options": {
"shell": {
"executable": "/bin/bash",
"args": [
"-l",
"-i",
"-c"
]
}
},
"tasks": [
{
"label": "setup",
"detail": "Setup dependencies",
"type": "shell",
"command": "pnpm run setup",
"problemMatcher": []
},
{
"label": "build:plugin",
"detail": "Build plugin",
"type": "shell",
"command": "pnpm run build:plugin",
"problemMatcher": []
},
{
"label": "deploy",
"detail": "Deploy plugin to deck",
"type": "shell",
"command": "pnpm run deploy",
"problemMatcher": []
},
{
"label": "builddeploy",
"detail": "Build and deploy plugin to deck",
"type": "shell",
"command": "pnpm run build:deploy",
"problemMatcher": []
},
]
}