mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 12:46:09 +03:00
Visual Studio Code tasks.json update to version 2.0.0
This commit is contained in:
parent
f775526d81
commit
b1845f9f6d
21
.vscode/tasks.json
vendored
21
.vscode/tasks.json
vendored
@ -1,25 +1,26 @@
|
|||||||
{
|
{
|
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
// for the documentation about the tasks.json format
|
// for the documentation about the tasks.json format
|
||||||
"version": "0.1.0",
|
"version": "2.0.0",
|
||||||
"command": "grunt",
|
"command": "grunt",
|
||||||
"isShellCommand": true,
|
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"taskName": "build",
|
"label": "build",
|
||||||
"args": [],
|
"type": "grunt",
|
||||||
"isBuildCommand": true,
|
"task": "build",
|
||||||
"isWatching": false,
|
|
||||||
"problemMatcher": [
|
"problemMatcher": [
|
||||||
"$lessCompile",
|
"$lessCompile",
|
||||||
"$tsc",
|
"$tsc",
|
||||||
"$jshint"
|
"$jshint"
|
||||||
]
|
],
|
||||||
|
"group": "build"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taskName": "test",
|
"label": "test",
|
||||||
"args": [],
|
"type": "grunt",
|
||||||
"isTestCommand": true
|
"task": "test",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"group": "test"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
25
.vscode/tasks.json.old
vendored
Normal file
25
.vscode/tasks.json.old
vendored
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user