mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-12-07 06:08:08 -06:00
43 lines
1 KiB
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": []
|
|
},
|
|
]
|
|
}
|