Merge branch 'master' into ms-reference-strip

* master:
  Visual Studio Code tasks.json update to version 2.0.0
This commit is contained in:
Mark Salsbery 2021-05-06 14:38:53 -07:00
commit f49d1c6eb7
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
}
]
}