31 lines
635 B
JSON
31 lines
635 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "func",
|
|
"command": "host start",
|
|
"problemMatcher": "$func-node-watch",
|
|
"isBackground": true,
|
|
"dependsOn": "npm build (functions)"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "npm build (functions)",
|
|
"command": "npm run build",
|
|
"dependsOn": "npm install (functions)",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "npm install (functions)",
|
|
"command": "npm install"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "npm prune (functions)",
|
|
"command": "npm prune --production",
|
|
"dependsOn": "npm build (functions)",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |