Add README, tasks, moved to pnpm and added an ignore for react (#3)

This commit is contained in:
TrainDoctor 2022-06-14 13:38:29 -07:00 committed by GitHub
commit d67d18ab77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 999 additions and 2530 deletions

42
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
// BUILD
{
"label": "pnpmsetup",
"type": "shell",
"group": "build",
"detail": "Setup pnpm",
"command": "pnpm i",
"problemMatcher": []
},
{
"label": "updatefrontendlib",
"type": "shell",
"group": "build",
"detail": "Update deck-frontend-lib",
"command": "pnpm update decky-frontend-lib --latest",
"problemMatcher": []
},
{
"label": "build",
"type": "npm",
"group": "build",
"detail": "rollup -c",
"script": "build",
"path": "",
"problemMatcher": [],
},
{
"label": "buildall",
"group": "build",
"detail": "Build decky-plugin-template",
"dependsOrder": "sequence",
"dependsOn": [
"pnpmsetup",
"updatefrontendlib",
"build"
]
}
]
}