Skip to content
This repository was archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
chore: added compound tasks for running the webapp and the server in …
Browse files Browse the repository at this point in the history
…parallel
  • Loading branch information
novaotp committed Jul 16, 2024
1 parent 7ff3560 commit d49738e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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"]
}
]
}

0 comments on commit d49738e

Please sign in to comment.