1
0
Fork 0
mirror of https://github.com/mat-1/matdoesdev.git synced 2025-08-02 14:46:04 +00:00

run yarn dev on startup

This commit is contained in:
mat 2021-11-16 19:24:35 -06:00
parent 5e3afc8e43
commit 527cb778f6

18
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Dev",
"type": "shell",
"command": "yarn dev",
"group": "none",
"presentation": {
"reveal": "always",
"panel": "new"
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}