Updated npm in auto build to v12

Added vscode tasks for launching frontend and backend in dev mode
This commit is contained in:
Isaac Abadi
2021-07-21 18:52:43 -06:00
parent 42aaecc13a
commit 84e54cb4d5
2 changed files with 29 additions and 1 deletions

25
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"problemMatcher": [],
"label": "Dev: start frontend",
"detail": "ng serve"
},
{
"label": "Dev: start backend",
"type": "shell",
"command": "set YTDL_MODE=debug && node app.js",
"options": {
"cwd": "./backend"
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}