Skip to content

Instantly share code, notes, and snippets.

@mechaneyes
Last active December 3, 2024 14:07
Show Gist options
  • Save mechaneyes/8d6d38e964c994bc66b2fdcd59457acd to your computer and use it in GitHub Desktop.
Save mechaneyes/8d6d38e964c994bc66b2fdcd59457acd to your computer and use it in GitHub Desktop.
open 3 vscode terminal tabs and run `yarn dev` for each app in monorepo
{
"version": "2.0.0",
"tasks": [
{
"label": "Launch NYSee",
"dependsOn": ["🏂homeboy", "📡radar: incoming", "Gimme the 🔫lowdown"],
"problemMatcher": [],
"runOptions": {
"runOn": "folderOpen"
}
},
{
"label": "🏂homeboy",
"type": "shell",
"command": "cd ./apps/🏂home && yarn dev",
"presentation": {
"reveal": "always",
"panel": "new",
"group": "terminals",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
},
{
"label": "📡radar: incoming",
"type": "shell",
"command": "cd ./apps/📡radar && yarn dev",
"presentation": {
"reveal": "always",
"panel": "new",
"group": "terminals",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
},
{
"label": "Gimme the 🔫lowdown",
"type": "shell",
"command": "cd ./apps/🔫lowdown && yarn dev",
"presentation": {
"reveal": "always",
"panel": "new",
"group": "terminals",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment