Last active
June 30, 2023 13:29
-
-
Save grabbou/1e19049ebc6127b269f4230bfaed5170 to your computer and use it in GitHub Desktop.
A simple example of launching two long-running processes within Visual Studio Code to make working in monorepo easier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Start Expo dev server", | |
"type": "shell", | |
"command": "cd ./apps/mobile && yarn start", | |
"presentation": { | |
"reveal": "always", | |
"panel": "new", | |
"group": "develop", | |
}, | |
"runOptions": { "runOn": "folderOpen" }, | |
}, | |
{ | |
"label": "Start Vercel dev server", | |
"type": "shell", | |
"command": "cd ./apps/backend && yarn vercel dev", | |
"presentation": { | |
"reveal": "always", | |
"panel": "new", | |
"group": "develop", | |
}, | |
"runOptions": { "runOn": "folderOpen" } | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment