Last active
December 3, 2024 14:07
-
-
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
This file contains hidden or 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": "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