From d49738e5ae7965cc9b606b2f56eb9a5f63fb2e82 Mon Sep 17 00:00:00 2001 From: Sajidur Rahman Date: Tue, 16 Jul 2024 07:01:12 +0200 Subject: [PATCH] chore: added compound tasks for running the webapp and the server in parallel --- .vscode/tasks.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..08fb1642 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,27 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Web Dev", + "type": "shell", + "command": "npm", + "args": ["run", "dev"], + "options": { + "cwd": "${workspaceRoot}/packages/web" + } + }, + { + "label": "Server Dev", + "type": "shell", + "command": "npm", + "args": ["run", "dev"], + "options": { + "cwd": "${workspaceRoot}/packages/server" + } + }, + { + "label": "Dev", + "dependsOn": ["Server Dev", "Web Dev"] + } + ] +}