update: bump tasks.json to v2.0.0; update pacakage.json

pull/1/head
dilin-MS 4 years ago
parent 81373055b8
commit 5b0e78586e
  1. 12
      .vscode/tasks.json
  2. 16
      package.json

12
.vscode/tasks.json vendored

@ -7,26 +7,26 @@
// ${cwd}: the current working directory of the spawned process
// A task runner that calls a custom npm script that compiles the extension.
{
"version": "0.1.0",
"version": "2.0.0",
"command": "gulp",
"isShellCommand": true,
"args": [
"--no-color"
],
"tasks": [
{
"taskName": "build",
"label": "build",
"args": [],
"isBuildCommand": true,
"type": "shell",
"group": "build",
"isBackground": false,
"problemMatcher": [
"$tsc"
]
},
{
"taskName": "build_without_view",
"label": "build_without_view",
"args": [],
"isBuildCommand": true,
"group": "build",
"isBackground": false,
"problemMatcher": [
"$tsc"

@ -20,7 +20,7 @@
},
"homepage": "https://github.com/Microsoft/vscode-arduino/blob/master/README.md",
"categories": [
"Languages",
"Programming Languages",
"Debuggers",
"Snippets",
"Formatters"
@ -54,6 +54,14 @@
],
"main": "./out/src/extension",
"contributes": {
"breakpoints": [
{
"language": "c"
},
{
"language": "cpp"
}
],
"snippets": [
{
"language": "cpp",
@ -161,12 +169,6 @@
{
"type": "arduino",
"label": "Arduino",
"enableBreakpointsFor": {
"languageIds": [
"c",
"cpp"
]
},
"configurationSnippets": [
{
"label": "Arduino: Launch Debugger",

Loading…
Cancel
Save