mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
Updates to v2.0 task schema
This commit is contained in:
25
.vscode/tasks.json
vendored
25
.vscode/tasks.json
vendored
@@ -9,13 +9,18 @@
|
|||||||
// A task runner that calls a custom npm script that compiles the extension.
|
// A task runner that calls a custom npm script that compiles the extension.
|
||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"showOutput": "silent",
|
"presentation": {
|
||||||
|
"echo": true,
|
||||||
|
"reveal": "always",
|
||||||
|
"focus": false,
|
||||||
|
"panel": "shared"
|
||||||
|
},
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"taskName": "compile",
|
"label": "compile",
|
||||||
"command": "npm run compile --silent",
|
"type": "npm",
|
||||||
"isBuildCommand": true,
|
"script": "compile",
|
||||||
"isShellCommand": true,
|
"group": "build",
|
||||||
"problemMatcher": [
|
"problemMatcher": [
|
||||||
"$tsc",
|
"$tsc",
|
||||||
{
|
{
|
||||||
@@ -25,19 +30,17 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taskName": "lint",
|
"type": "npm",
|
||||||
"command": "npm run lint --silent",
|
"script": "lint",
|
||||||
"isShellCommand": true,
|
|
||||||
"problemMatcher": {
|
"problemMatcher": {
|
||||||
"base": "$tslint5",
|
"base": "$tslint5",
|
||||||
"fileLocation": "relative"
|
"fileLocation": "relative"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taskName": "watch",
|
"type": "npm",
|
||||||
"command": "npm run watch --silent",
|
"script": "watch",
|
||||||
"isBackground": true,
|
"isBackground": true,
|
||||||
"isShellCommand": true,
|
|
||||||
"problemMatcher": "$tsc-watch"
|
"problemMatcher": "$tsc-watch"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user