v0.1 #1

Merged
niklas merged 17 commits from develop into master 2020-04-22 14:53:02 +00:00
Showing only changes of commit 625b3f4f23 - Show all commits

28
.vscode/tasks.json vendored
View File

@ -14,6 +14,34 @@
}, },
"group": "none", "group": "none",
"problemMatcher": [] "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": []
} }
] ]
} }