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

33 lines
880 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "setup",
"detail": "Setup dependencies",
2022-06-16 12:15:06 -07:00
"type": "shell",
"command": "pnpm run setup",
2022-06-16 12:15:06 -07:00
"problemMatcher": []
},
{
"label": "build:plugin",
"detail": "Build plugin",
2022-06-16 12:15:06 -07:00
"type": "shell",
"command": "pnpm run build:plugin",
2022-06-16 12:47:53 -07:00
"problemMatcher": []
},
{
"label": "deploy",
"detail": "Deploy plugin to deck",
2022-06-16 12:47:53 -07:00
"type": "shell",
"command": "pnpm run deploy",
2022-06-16 12:15:06 -07:00
"problemMatcher": []
},
{
"label": "builddeploy",
"detail": "Build and deploy plugin to deck",
"type": "shell",
"command": "pnpm run build:deploy",
2022-06-16 14:59:43 -07:00
"problemMatcher": []
2022-06-16 12:15:06 -07:00
},
]
}