summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorTrainDoctor <11465594+TrainDoctor@users.noreply.github.com>2022-06-14 13:38:29 -0700
committerGitHub <noreply@github.com>2022-06-14 16:38:29 -0400
commitd67d18ab7766e8dbb79fd48ac347d601f82d3332 (patch)
treeb1011506dd692add360f0e5b1a53dc750204a83d /.vscode/tasks.json
parent26dc961f583f66b8333d4f4ddbdba51c00676a7e (diff)
downloaddecky-bazzite-buddy-d67d18ab7766e8dbb79fd48ac347d601f82d3332.tar.gz
decky-bazzite-buddy-d67d18ab7766e8dbb79fd48ac347d601f82d3332.zip
Add README, tasks, moved to pnpm and added an ignore for react (#3)
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..87c0637
--- /dev/null
+++ b/.vscode/tasks.json
@@ -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"
+ ]
+ }
+ ]
+}