File tree Expand file tree Collapse file tree 1 file changed +44
-10
lines changed
vscode-extensions/commons-vscode/.vscode Expand file tree Collapse file tree 1 file changed +44
-10
lines changed Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments