decova-gotcha
Version:
It's my personal trial for automating daunting tasks
36 lines (35 loc) • 685 B
JSON
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"group": "build",
"label": "Build & Run",
"command": "npm install & tsc & node ./dist/app.js ++",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
},
{
"type": "shell",
"group": "build",
"label": "Build & Publish",
"command": "npm install & tsc & ggg ++ & npm publish",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
}
]
}