summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-06 18:49:50 -0700
committerKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-06 18:49:50 -0700
commitc3723a132f5c45adb765301b7854ca6b4b6ce82c (patch)
tree8758020beefba2f76386b744f529c0528f9964a9 /.vscode
parent400d1da490dab08a9b2ef2c88ab842ae5bc75620 (diff)
downloadsncontinue-c3723a132f5c45adb765301b7854ca6b4b6ce82c.tar.gz
sncontinue-c3723a132f5c45adb765301b7854ca6b4b6ce82c.tar.bz2
sncontinue-c3723a132f5c45adb765301b7854ca6b4b6ce82c.zip
Added a task to install all dependencies from top level without having to figure out commands in multiple sub projects. Developers should run this before the first debugging session and anytime they pull
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json12
1 files changed, 7 insertions, 5 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 3b6b62e8..808b6d1f 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -49,10 +49,12 @@
"revealProblems": "onProblem",
"clear": true,
},
- "group": {
- "kind": "build",
- "isDefault": true
- }
- }
+ },
+ // Install or update all dependencies for all projects in the monrepo
+ {
+ "label": "install-all-dependencies",
+ "type": "shell",
+ "command": "./install-dependencies.sh",
+ },
]
} \ No newline at end of file