Skip to content

Commit f4969df

Browse files
committed
Switch to DCO from CLA
Signed-off-by: aboyko <[email protected]>
1 parent f78a41a commit f4969df

File tree

1 file changed

+44
-10
lines changed
  • vscode-extensions/commons-vscode/.vscode

1 file changed

+44
-10
lines changed
Lines changed: 44 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,57 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33
"command": "npm",
4-
"isShellCommand": true,
5-
"args": ["run"],
6-
"showOutput": "always",
4+
"args": [
5+
"run"
6+
],
77
"tasks": [
88
{
9-
"taskName": "compile",
10-
"isBuildCommand": true
9+
"label": "compile",
10+
"type": "shell",
11+
"command": "npm",
12+
"args": [
13+
"run",
14+
"compile"
15+
],
16+
"problemMatcher": [],
17+
"group": {
18+
"_id": "build",
19+
"isDefault": false
20+
}
1121
},
1222
{
13-
"taskName": "clean"
23+
"label": "clean",
24+
"type": "shell",
25+
"command": "npm",
26+
"args": [
27+
"run",
28+
"clean"
29+
],
30+
"problemMatcher": []
1431
},
1532
{
16-
"taskName": "lint"
33+
"label": "lint",
34+
"type": "shell",
35+
"command": "npm",
36+
"args": [
37+
"run",
38+
"lint"
39+
],
40+
"problemMatcher": []
1741
},
1842
{
19-
"taskName": "test",
20-
"isTestCommand": true
43+
"label": "test",
44+
"type": "shell",
45+
"command": "npm",
46+
"args": [
47+
"run",
48+
"test"
49+
],
50+
"problemMatcher": [],
51+
"group": {
52+
"_id": "test",
53+
"isDefault": false
54+
}
2155
}
2256
]
2357
}

0 commit comments

Comments
 (0)