added build task to vscode

This commit is contained in:
Niklas 2020-04-22 16:25:09 +02:00
parent 5f79a68066
commit 625b3f4f23

28
.vscode/tasks.json vendored
View File

@ -14,6 +14,34 @@
},
"group": "none",
"problemMatcher": []
},
{
"label": "Build prod",
"command": "npm",
"type": "shell",
"args": [
"run",
"buildProd"
],
"presentation": {
"reveal": "always"
},
"group": "none",
"problemMatcher": []
},
{
"label": "Build dev",
"command": "npm",
"type": "shell",
"args": [
"run",
"build"
],
"presentation": {
"reveal": "always"
},
"group": "none",
"problemMatcher": []
}
]
}