Merge pull request #1974 from openseadragon/ms-vscode-tasks

Visual Studio Code tasks.json update to version 2.0.0
This commit is contained in:
Ian Gilman 2021-05-06 14:30:03 -07:00 committed by GitHub
commit 2b70908dcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 10 deletions

21
.vscode/tasks.json vendored
View File

@ -1,25 +1,26 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "grunt",
"isShellCommand": true,
"tasks": [
{
"taskName": "build",
"args": [],
"isBuildCommand": true,
"isWatching": false,
"label": "build",
"type": "grunt",
"task": "build",
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
],
"group": "build"
},
{
"taskName": "test",
"args": [],
"isTestCommand": true
"label": "test",
"type": "grunt",
"task": "test",
"problemMatcher": [],
"group": "test"
}
]
}

25
.vscode/tasks.json.old vendored Normal file
View File

@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "grunt",
"isShellCommand": true,
"tasks": [
{
"taskName": "build",
"args": [],
"isBuildCommand": true,
"isWatching": false,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
},
{
"taskName": "test",
"args": [],
"isTestCommand": true
}
]
}